-rw-r--r-- | libopie2/opieui/fileselector/ofileselector.cpp | 30 | ||||
-rw-r--r-- | libopie2/opieui/fileselector/ofileselector.h | 3 | ||||
-rw-r--r-- | libopie2/opieui/fileselector/ofileselector_p.h | 2 |
3 files changed, 12 insertions, 23 deletions
diff --git a/libopie2/opieui/fileselector/ofileselector.cpp b/libopie2/opieui/fileselector/ofileselector.cpp index e8d502f..01a51a2 100644 --- a/libopie2/opieui/fileselector/ofileselector.cpp +++ b/libopie2/opieui/fileselector/ofileselector.cpp | |||
@@ -151,16 +151,22 @@ QString OFileViewInterface::currentFileName()const | |||
151 | return selector()->m_lneEdit->text(); | 151 | return selector()->m_lneEdit->text(); |
152 | } | 152 | } |
153 | 153 | ||
154 | QString OFileViewInterface::startDirectory()const | 154 | QString OFileViewInterface::startDirectory()const |
155 | { | 155 | { |
156 | return selector()->m_startDir; | 156 | return selector()->m_startDir; |
157 | } | 157 | } |
158 | 158 | ||
159 | bool OFileViewInterface::allItem( const QString& item )const | ||
160 | { | ||
161 | return selector()->m_allList.contains( item ); | ||
162 | } | ||
163 | |||
164 | |||
159 | ODocumentFileView::ODocumentFileView( OFileSelector* selector ) | 165 | ODocumentFileView::ODocumentFileView( OFileSelector* selector ) |
160 | :OFileViewInterface( selector ) | 166 | :OFileViewInterface( selector ) |
161 | { | 167 | { |
162 | m_selector = 0; | 168 | m_selector = 0; |
163 | setName( QObject::tr("Documents") ); | 169 | setName( QObject::tr("Documents") ); |
164 | } | 170 | } |
165 | 171 | ||
166 | ODocumentFileView::~ODocumentFileView() | 172 | ODocumentFileView::~ODocumentFileView() |
@@ -525,24 +531,16 @@ bool OFileViewFileListView::eventFilter (QObject *, QEvent *e) | |||
525 | { | 531 | { |
526 | slotClicked( Qt::LeftButton,m_view->currentItem(),QPoint(0,0),0); | 532 | slotClicked( Qt::LeftButton,m_view->currentItem(),QPoint(0,0),0); |
527 | return true; | 533 | return true; |
528 | } | 534 | } |
529 | } | 535 | } |
530 | return false; | 536 | return false; |
531 | } | 537 | } |
532 | 538 | ||
533 | /** | ||
534 | * @return true if the item show all files or directories | ||
535 | */ | ||
536 | bool OFileViewFileListView::allItem( const QString& item )const | ||
537 | { | ||
538 | return m_sel->allItem( item ); | ||
539 | } | ||
540 | |||
541 | void OFileViewFileListView::connectSlots() | 539 | void OFileViewFileListView::connectSlots() |
542 | { | 540 | { |
543 | connect(m_view, SIGNAL(clicked(QListViewItem*) ), | 541 | connect(m_view, SIGNAL(clicked(QListViewItem*) ), |
544 | this, SLOT(slotCurrentChanged(QListViewItem*) ) ); | 542 | this, SLOT(slotCurrentChanged(QListViewItem*) ) ); |
545 | connect(m_view, SIGNAL(mouseButtonClicked(int,QListViewItem*,const QPoint&,int) ), | 543 | connect(m_view, SIGNAL(mouseButtonClicked(int,QListViewItem*,const QPoint&,int) ), |
546 | this, SLOT(slotClicked(int,QListViewItem*,const QPoint&,int) ) ); | 544 | this, SLOT(slotClicked(int,QListViewItem*,const QPoint&,int) ) ); |
547 | } | 545 | } |
548 | 546 | ||
@@ -820,17 +818,17 @@ QWidget* OFileViewFileSystem::widget( QWidget* parent ) | |||
820 | { | 818 | { |
821 | m_view = new OFileViewFileListView( parent, startDirectory(), selector() ); | 819 | m_view = new OFileViewFileListView( parent, startDirectory(), selector() ); |
822 | } | 820 | } |
823 | return m_view; | 821 | return m_view; |
824 | } | 822 | } |
825 | 823 | ||
826 | void OFileViewFileSystem::activate( const QString& str ) | 824 | void OFileViewFileSystem::activate( const QString& str ) |
827 | { | 825 | { |
828 | m_all = m_view->allItem( str ); | 826 | m_all = allItem( str ); |
829 | } | 827 | } |
830 | 828 | ||
831 | 829 | ||
832 | } | 830 | } |
833 | /* Selector */ | 831 | /* Selector */ |
834 | /** | 832 | /** |
835 | * @short new and complete c'tor | 833 | * @short new and complete c'tor |
836 | * | 834 | * |
@@ -870,17 +868,17 @@ OFileSelector::OFileSelector( QWidget* parent, int mode, int sel, | |||
870 | m_shNew = showNew; | 868 | m_shNew = showNew; |
871 | m_shClose = showClose; | 869 | m_shClose = showClose; |
872 | m_mimeType = mimetypes; | 870 | m_mimeType = mimetypes; |
873 | m_startDir = dirName; | 871 | m_startDir = dirName; |
874 | 872 | ||
875 | m_mode = mode; | 873 | m_mode = mode; |
876 | m_selector = sel; | 874 | m_selector = sel; |
877 | 875 | ||
878 | m_allList = new QStringList(); | 876 | m_allList = QStringList(); |
879 | 877 | ||
880 | initUI(); | 878 | initUI(); |
881 | m_lneEdit->setText( fileName ); | 879 | m_lneEdit->setText( fileName ); |
882 | initMime(); | 880 | initMime(); |
883 | initViews(); | 881 | initViews(); |
884 | 882 | ||
885 | QString str; | 883 | QString str; |
886 | switch ( m_selector ) | 884 | switch ( m_selector ) |
@@ -1028,22 +1026,22 @@ void OFileSelector::initViews() | |||
1028 | 1026 | ||
1029 | /* see above why add both */ | 1027 | /* see above why add both */ |
1030 | OFileViewInterface* in = new OFileViewFileSystem( this ); | 1028 | OFileViewInterface* in = new OFileViewFileSystem( this ); |
1031 | 1029 | ||
1032 | if ( m_mode == OFileSelector::DIRECTORYSELECTOR ) | 1030 | if ( m_mode == OFileSelector::DIRECTORYSELECTOR ) |
1033 | { | 1031 | { |
1034 | m_views.insert( QObject::tr("Directories"), in ); | 1032 | m_views.insert( QObject::tr("Directories"), in ); |
1035 | m_views.insert( QObject::tr("All Directories"), in ); | 1033 | m_views.insert( QObject::tr("All Directories"), in ); |
1036 | m_allList->append( QObject::tr("All Directories") ); | 1034 | m_allList.append( QObject::tr("All Directories") ); |
1037 | } else { | 1035 | } else { |
1038 | m_views.insert( QObject::tr("Documents"), new ODocumentFileView(this) ); | 1036 | m_views.insert( QObject::tr("Documents"), new ODocumentFileView(this) ); |
1039 | m_views.insert( QObject::tr("Files"), in ); | 1037 | m_views.insert( QObject::tr("Files"), in ); |
1040 | m_views.insert( QObject::tr("All Files"), in ); | 1038 | m_views.insert( QObject::tr("All Files"), in ); |
1041 | m_allList->append( QObject::tr("All Files") ); | 1039 | m_allList.append( QObject::tr("All Files") ); |
1042 | } | 1040 | } |
1043 | } | 1041 | } |
1044 | 1042 | ||
1045 | void OFileSelector::registerView( const Internal::OFileViewInterface* iface ) { | 1043 | void OFileSelector::registerView( const Internal::OFileViewInterface* iface ) { |
1046 | m_viewsPtr.append( iface ); | 1044 | m_viewsPtr.append( iface ); |
1047 | } | 1045 | } |
1048 | 1046 | ||
1049 | 1047 | ||
@@ -1153,24 +1151,16 @@ int OFileSelector::mode()const | |||
1153 | /** | 1151 | /** |
1154 | * @return the Selector of the OFileSelector | 1152 | * @return the Selector of the OFileSelector |
1155 | */ | 1153 | */ |
1156 | int OFileSelector::selector()const | 1154 | int OFileSelector::selector()const |
1157 | { | 1155 | { |
1158 | return m_selector; | 1156 | return m_selector; |
1159 | } | 1157 | } |
1160 | 1158 | ||
1161 | /** | ||
1162 | * @return true if the item show all files or directories | ||
1163 | */ | ||
1164 | bool OFileSelector::allItem( const QString& item )const | ||
1165 | { | ||
1166 | return ( m_allList->findIndex( item ) != -1 ); | ||
1167 | } | ||
1168 | |||
1169 | QStringList OFileSelector::currentMimeType()const | 1159 | QStringList OFileSelector::currentMimeType()const |
1170 | { | 1160 | { |
1171 | return m_mimeType[m_cmbMime->currentText()]; | 1161 | return m_mimeType[m_cmbMime->currentText()]; |
1172 | } | 1162 | } |
1173 | 1163 | ||
1174 | void OFileSelector::slotMimeTypeChanged() | 1164 | void OFileSelector::slotMimeTypeChanged() |
1175 | { | 1165 | { |
1176 | reread(); | 1166 | reread(); |
diff --git a/libopie2/opieui/fileselector/ofileselector.h b/libopie2/opieui/fileselector/ofileselector.h index d96712a..d166afd 100644 --- a/libopie2/opieui/fileselector/ofileselector.h +++ b/libopie2/opieui/fileselector/ofileselector.h | |||
@@ -116,17 +116,16 @@ public: | |||
116 | 116 | ||
117 | DocLnk selectedDocument()const; | 117 | DocLnk selectedDocument()const; |
118 | 118 | ||
119 | int fileCount()const; | 119 | int fileCount()const; |
120 | void reread(); | 120 | void reread(); |
121 | 121 | ||
122 | int mode()const; | 122 | int mode()const; |
123 | int selector()const; | 123 | int selector()const; |
124 | bool allItem( const QString& )const; | ||
125 | 124 | ||
126 | /** | 125 | /** |
127 | * Set the Icon visible | 126 | * Set the Icon visible |
128 | * @param b Show or Hide the New Button | 127 | * @param b Show or Hide the New Button |
129 | */ | 128 | */ |
130 | void setNewVisible( bool b ); | 129 | void setNewVisible( bool b ); |
131 | 130 | ||
132 | /** | 131 | /** |
@@ -208,17 +207,17 @@ private: | |||
208 | QList<Internal::OFileViewInterface> m_viewsPtr; | 207 | QList<Internal::OFileViewInterface> m_viewsPtr; |
209 | QHBox* m_nameBox; // the LineEdit + Label is hold here | 208 | QHBox* m_nameBox; // the LineEdit + Label is hold here |
210 | QHBox* m_cmbBox; // this holds the two combo boxes | 209 | QHBox* m_cmbBox; // this holds the two combo boxes |
211 | 210 | ||
212 | QString m_startDir; | 211 | QString m_startDir; |
213 | int m_mode; | 212 | int m_mode; |
214 | int m_selector; | 213 | int m_selector; |
215 | 214 | ||
216 | QStringList* m_allList; | 215 | QStringList m_allList; |
217 | 216 | ||
218 | struct Data; // used for future versions | 217 | struct Data; // used for future versions |
219 | Data *d; | 218 | Data *d; |
220 | 219 | ||
221 | private slots: | 220 | private slots: |
222 | void slotMimeTypeChanged(); | 221 | void slotMimeTypeChanged(); |
223 | 222 | ||
224 | /* will set the text of the lineedit and emit a fileChanged signal */ | 223 | /* will set the text of the lineedit and emit a fileChanged signal */ |
diff --git a/libopie2/opieui/fileselector/ofileselector_p.h b/libopie2/opieui/fileselector/ofileselector_p.h index 252a7f5..790d2bd 100644 --- a/libopie2/opieui/fileselector/ofileselector_p.h +++ b/libopie2/opieui/fileselector/ofileselector_p.h | |||
@@ -70,16 +70,17 @@ public: | |||
70 | virtual QString selectedPath()const = 0; | 70 | virtual QString selectedPath()const = 0; |
71 | virtual QString directory()const = 0; | 71 | virtual QString directory()const = 0; |
72 | virtual void reread() = 0; | 72 | virtual void reread() = 0; |
73 | virtual int fileCount()const = 0; | 73 | virtual int fileCount()const = 0; |
74 | virtual DocLnk selectedDocument()const; | 74 | virtual DocLnk selectedDocument()const; |
75 | virtual QWidget* widget( QWidget* parent) = 0; | 75 | virtual QWidget* widget( QWidget* parent) = 0; |
76 | virtual void activate( const QString& ); | 76 | virtual void activate( const QString& ); |
77 | QString name()const; | 77 | QString name()const; |
78 | bool allItem( const QString& )const; | ||
78 | protected: | 79 | protected: |
79 | OFileSelector* selector()const; | 80 | OFileSelector* selector()const; |
80 | void setName( const QString& ); | 81 | void setName( const QString& ); |
81 | bool showNew()const; | 82 | bool showNew()const; |
82 | bool showClose()const; | 83 | bool showClose()const; |
83 | MimeTypes mimeTypes()const; | 84 | MimeTypes mimeTypes()const; |
84 | QStringList currentMimeType()const; | 85 | QStringList currentMimeType()const; |
85 | QString startDirectory()const; | 86 | QString startDirectory()const; |
@@ -147,17 +148,16 @@ class OFileViewFileListView : public QWidget | |||
147 | public: | 148 | public: |
148 | OFileViewFileListView( QWidget* parent, const QString& dir, OFileSelector* selector ); | 149 | OFileViewFileListView( QWidget* parent, const QString& dir, OFileSelector* selector ); |
149 | ~OFileViewFileListView(); | 150 | ~OFileViewFileListView(); |
150 | 151 | ||
151 | OFileSelectorItem* currentItem()const; | 152 | OFileSelectorItem* currentItem()const; |
152 | void reread( bool all = false ); | 153 | void reread( bool all = false ); |
153 | int fileCount()const; | 154 | int fileCount()const; |
154 | QString currentDir()const; | 155 | QString currentDir()const; |
155 | bool allItem( const QString& )const; | ||
156 | protected: | 156 | protected: |
157 | bool eventFilter (QObject *o, QEvent *e); | 157 | bool eventFilter (QObject *o, QEvent *e); |
158 | private slots: | 158 | private slots: |
159 | void slotNew(); // will emit newSelected | 159 | void slotNew(); // will emit newSelected |
160 | void cdUP(); | 160 | void cdUP(); |
161 | void cdHome(); | 161 | void cdHome(); |
162 | void cdDoc(); | 162 | void cdDoc(); |
163 | void changeDir( const QString& ); | 163 | void changeDir( const QString& ); |