summaryrefslogtreecommitdiff
authorzecke <zecke>2002-06-26 19:23:12 (UTC)
committer zecke <zecke>2002-06-26 19:23:12 (UTC)
commitc229565c40d478555a9ed0aa4910b9ab8181884c (patch) (unidiff)
tree47fb5d00bf3c21ddd0e64dc4571f7dcba3516db9
parent7b3b485aff7fc5f5cdef40a7d4989295d5c8ab4a (diff)
downloadopie-c229565c40d478555a9ed0aa4910b9ab8181884c.zip
opie-c229565c40d478555a9ed0aa4910b9ab8181884c.tar.gz
opie-c229565c40d478555a9ed0aa4910b9ab8181884c.tar.bz2
Adjust mimetype handling
LJP and Max look at it.
Diffstat (more/less context) (ignore whitespace changes)
-rw-r--r--core/multimedia/opieplayer/inputDialog.cpp23
1 files changed, 19 insertions, 4 deletions
diff --git a/core/multimedia/opieplayer/inputDialog.cpp b/core/multimedia/opieplayer/inputDialog.cpp
index b46c154..da8e276 100644
--- a/core/multimedia/opieplayer/inputDialog.cpp
+++ b/core/multimedia/opieplayer/inputDialog.cpp
@@ -25,3 +25,3 @@ InputDialog::InputDialog( QWidget* parent, const char* name, bool modal, WFlags
25 setName( "InputDialog" ); 25 setName( "InputDialog" );
26 resize( 234, 115); 26 resize( 234, 115);
27 setMaximumSize( QSize( 240, 40)); 27 setMaximumSize( QSize( 240, 40));
@@ -37,3 +37,3 @@ InputDialog::InputDialog( QWidget* parent, const char* name, bool modal, WFlags
37 37
38/* 38/*
39 * Destroys the object and frees any allocated resources 39 * Destroys the object and frees any allocated resources
@@ -43,3 +43,3 @@ InputDialog::~InputDialog()
43 inputText= LineEdit1->text(); 43 inputText= LineEdit1->text();
44 44
45} 45}
@@ -48,3 +48,18 @@ void InputDialog::browse() {
48 48
49 QString str = OFileDialog::getOpenFileName( 1,"/","", "audio/*;video/*;playlist/plain;audio/x-mpegurl", 0 ); 49 MimeTypes types;
50 QStringList audio, video, all;
51 audio << "audio/*";
52 audio << "playlist/plain";
53 audio << "audio/x-mpegurl";
54
55 video << "video/*";
56 video << "playlist/plain";
57
58 all += audio;
59 all += video;
60 types.insert("All Media Files", all );
61 types.insert("Audio", audio );
62 types.insert("Video", video );
63
64 QString str = OFileDialog::getOpenFileName( 1,"/","", types, 0 );
50 LineEdit1->setText(str); 65 LineEdit1->setText(str);