summaryrefslogtreecommitdiff
authorllornkcor <llornkcor>2002-02-19 03:19:17 (UTC)
committer llornkcor <llornkcor>2002-02-19 03:19:17 (UTC)
commit789c9e0069f71afececf81204879462f3117e583 (patch) (unidiff)
tree696073b7c8689379f914a81099163507546349a1
parent994691c1659fdac4980b0319aa8fab1c98ef3c73 (diff)
downloadopie-789c9e0069f71afececf81204879462f3117e583.zip
opie-789c9e0069f71afececf81204879462f3117e583.tar.gz
opie-789c9e0069f71afececf81204879462f3117e583.tar.bz2
set listviewcolum stuff on dialogs
Diffstat (more/less context) (ignore whitespace changes)
-rw-r--r--core/apps/textedit/fileBrowser.cpp3
-rw-r--r--core/apps/textedit/fileSaver.cpp6
2 files changed, 6 insertions, 3 deletions
diff --git a/core/apps/textedit/fileBrowser.cpp b/core/apps/textedit/fileBrowser.cpp
index bb420e6..2275388 100644
--- a/core/apps/textedit/fileBrowser.cpp
+++ b/core/apps/textedit/fileBrowser.cpp
@@ -17,49 +17,50 @@
17#include <qlistview.h> 17#include <qlistview.h>
18#include <qpushbutton.h> 18#include <qpushbutton.h>
19#include <qfile.h> 19#include <qfile.h>
20#include <qmessagebox.h> 20#include <qmessagebox.h>
21#include <unistd.h> 21#include <unistd.h>
22 22
23fileBrowser::fileBrowser( QWidget* parent, const char* name, bool modal, WFlags fl , const QString filter ) 23fileBrowser::fileBrowser( QWidget* parent, const char* name, bool modal, WFlags fl , const QString filter )
24 : QDialog( parent, name, modal, fl ) 24 : QDialog( parent, name, modal, fl )
25{ 25{
26 if ( !name ) 26 if ( !name )
27 setName( "fileBrowser" ); 27 setName( "fileBrowser" );
28 resize( 236, 280 ); 28 resize( 236, 280 );
29 setCaption(tr( "Browse for file" ) ); 29 setCaption(tr( "Browse for file" ) );
30 filterStr=filter; 30 filterStr=filter;
31 dirLabel = new QLabel(this, "DirLabel"); 31 dirLabel = new QLabel(this, "DirLabel");
32 dirLabel->setText(currentDir.canonicalPath()); 32 dirLabel->setText(currentDir.canonicalPath());
33 dirLabel->setGeometry(10,4,230,30); 33 dirLabel->setGeometry(10,4,230,30);
34 ListView = new QListView( this, "ListView" ); 34 ListView = new QListView( this, "ListView" );
35 ListView->addColumn( tr( "Name" ) ); 35 ListView->addColumn( tr( "Name" ) );
36 ListView->setColumnWidth(0,140); 36 ListView->setColumnWidth(0,140);
37 ListView->setSorting( 2, FALSE); 37 ListView->setSorting( 2, FALSE);
38 ListView->addColumn( tr( "Size" ) ); 38 ListView->addColumn( tr( "Size" ) );
39 ListView->setColumnWidth(1,59); 39 ListView->setColumnWidth(1,59);
40// ListView->addColumn( tr( "" ) ); 40// ListView->addColumn( tr( "" ) );
41// ListView->setColumnWidth(1,59); 41 ListView->setColumnWidthMode(0,QListView::Manual);
42 ListView->setColumnAlignment(1,QListView::AlignRight);
42// ListView->setMultiSelection(true); 43// ListView->setMultiSelection(true);
43// ListView->setSelectionMode(QListView::Extended); 44// ListView->setSelectionMode(QListView::Extended);
44 45
45 ListView->setAllColumnsShowFocus( TRUE ); 46 ListView->setAllColumnsShowFocus( TRUE );
46 ListView->setGeometry( QRect( 10, 35, 220, 240 ) ); 47 ListView->setGeometry( QRect( 10, 35, 220, 240 ) );
47 48
48 // signals and slots connections 49 // signals and slots connections
49 connect( ListView, SIGNAL(doubleClicked( QListViewItem*)), SLOT(listDoubleClicked(QListViewItem *)) ); 50 connect( ListView, SIGNAL(doubleClicked( QListViewItem*)), SLOT(listDoubleClicked(QListViewItem *)) );
50 connect( ListView, SIGNAL(pressed( QListViewItem*)), SLOT(listClicked(QListViewItem *)) ); 51 connect( ListView, SIGNAL(pressed( QListViewItem*)), SLOT(listClicked(QListViewItem *)) );
51 currentDir.setPath(QDir::currentDirPath()); 52 currentDir.setPath(QDir::currentDirPath());
52 populateList(); 53 populateList();
53} 54}
54 55
55fileBrowser::~fileBrowser() 56fileBrowser::~fileBrowser()
56{ 57{
57} 58}
58 59
59 60
60void fileBrowser::populateList() 61void fileBrowser::populateList()
61{ 62{
62 ListView->clear(); 63 ListView->clear();
63//qDebug(currentDir.canonicalPath()); 64//qDebug(currentDir.canonicalPath());
64 currentDir.setFilter( QDir::Files | QDir::Dirs | QDir::Hidden ); 65 currentDir.setFilter( QDir::Files | QDir::Dirs | QDir::Hidden );
65 currentDir.setSorting(/* QDir::Size*/ /*| QDir::Reversed | */QDir::DirsFirst); 66 currentDir.setSorting(/* QDir::Size*/ /*| QDir::Reversed | */QDir::DirsFirst);
diff --git a/core/apps/textedit/fileSaver.cpp b/core/apps/textedit/fileSaver.cpp
index af51fc3..b813ed3 100644
--- a/core/apps/textedit/fileSaver.cpp
+++ b/core/apps/textedit/fileSaver.cpp
@@ -22,63 +22,65 @@
22#include <unistd.h> 22#include <unistd.h>
23#include <qlineedit.h> 23#include <qlineedit.h>
24 24
25fileSaver::fileSaver( QWidget* parent, const char* name, bool modal, WFlags fl , const QString currentFileName ) 25fileSaver::fileSaver( QWidget* parent, const char* name, bool modal, WFlags fl , const QString currentFileName )
26 : QDialog( parent, name, modal, fl ) 26 : QDialog( parent, name, modal, fl )
27{ 27{
28 if ( !name ) 28 if ( !name )
29 setName( "fileSaver" ); 29 setName( "fileSaver" );
30 resize( 236, 280 ); 30 resize( 236, 280 );
31 setCaption(tr( "Save file" ) ); 31 setCaption(tr( "Save file" ) );
32 QFileInfo fi(currentFileName); 32 QFileInfo fi(currentFileName);
33 QString tmpFileName=fi.fileName(); 33 QString tmpFileName=fi.fileName();
34// qDebug( tmpFileName); 34// qDebug( tmpFileName);
35 35
36 dirLabel = new QLabel(this, "DirLabel"); 36 dirLabel = new QLabel(this, "DirLabel");
37 dirLabel->setText(currentDir.canonicalPath()); 37 dirLabel->setText(currentDir.canonicalPath());
38 dirLabel->setGeometry(10,4,230,30); 38 dirLabel->setGeometry(10,4,230,30);
39 39
40 ListView = new QListView( this, "ListView" ); 40 ListView = new QListView( this, "ListView" );
41 ListView->addColumn( tr( "Name" ) ); 41 ListView->addColumn( tr( "Name" ) );
42 ListView->setColumnWidth(0,140); 42 ListView->setColumnWidth(0,140);
43 ListView->setSorting( 2, FALSE); 43 ListView->setSorting( 2, FALSE);
44 ListView->addColumn( tr( "Size" ) ); 44 ListView->addColumn( tr( "Size" ) );
45 ListView->setColumnWidth(1,59); 45 ListView->setColumnWidth(1,59);
46 ListView->setColumnWidthMode(0,QListView::Manual);
47 ListView->setColumnAlignment(1,QListView::AlignRight);
46// ListView->setMultiSelection(true); 48// ListView->setMultiSelection(true);
47// ListView->setSelectionMode(QListView::Extended); 49// ListView->setSelectionMode(QListView::Extended);
48 50
49 ListView->setAllColumnsShowFocus( TRUE ); 51 ListView->setAllColumnsShowFocus( TRUE );
50 ListView->setGeometry( QRect( 10, 35, 220, 160 ) ); 52 ListView->setGeometry( QRect( 10, 35, 220, 160 ) );
51 53
52 fileEdit= new QLineEdit(this); 54 fileEdit= new QLineEdit(this);
53 fileEdit->setGeometry( QRect( 10, 200, 200, 22)); 55 fileEdit->setGeometry( QRect( 10, 200, 200, 22));
54 56
55 fileEdit->setText( tmpFileName); 57 fileEdit->setText( tmpFileName);
56 58
57 // signals and slots connections 59 // signals and slots connections
58 connect( ListView, SIGNAL(doubleClicked( QListViewItem*)), SLOT(listDoubleClicked(QListViewItem *)) ); 60 connect( ListView, SIGNAL(doubleClicked( QListViewItem*)), SLOT(listDoubleClicked(QListViewItem *)) );
59 connect( ListView, SIGNAL(pressed( QListViewItem*)), SLOT(listClicked(QListViewItem *)) ); 61 connect( ListView, SIGNAL(pressed( QListViewItem*)), SLOT(listClicked(QListViewItem *)) );
60 62
61// tmpFileName=fi.FilePath(); 63// tmpFileName=fi.FilePath();
62// qDebug( tmpFileName); 64// qDebug( tmpFileName);
63 currentDir.setPath( QDir::currentDirPath() ); 65 currentDir.setPath( QDir::currentDirPath() );
64 populateList(); 66 populateList();
65} 67}
66 68
67fileSaver::~fileSaver() 69fileSaver::~fileSaver()
68{ 70{
69} 71}
70 72
71 73
72void fileSaver::populateList() 74void fileSaver::populateList()
73{ 75{
74 ListView->clear(); 76 ListView->clear();
75 currentDir.setFilter( QDir::Files | QDir::Dirs | QDir::Hidden ); 77 currentDir.setFilter( QDir::Files | QDir::Dirs | QDir::Hidden );
76 currentDir.setSorting(/* QDir::Size*/ /*| QDir::Reversed | */QDir::DirsFirst); 78 currentDir.setSorting(/* QDir::Size*/ /*| QDir::Reversed | */QDir::DirsFirst);
77 currentDir.setMatchAllDirs(TRUE); 79 currentDir.setMatchAllDirs(TRUE);
78 80
79 currentDir.setNameFilter("*"); 81 currentDir.setNameFilter("*");
80 QString fileL, fileS; 82 QString fileL, fileS;
81 const QFileInfoList *list = currentDir.entryInfoList(QDir::All /*, QDir::SortByMask*/); 83 const QFileInfoList *list = currentDir.entryInfoList(QDir::All /*, QDir::SortByMask*/);
82 QFileInfoListIterator it(*list); 84 QFileInfoListIterator it(*list);
83 QFileInfo *fi; 85 QFileInfo *fi;
84 while ( (fi=it.current()) ) { 86 while ( (fi=it.current()) ) {
@@ -141,42 +143,42 @@ void fileSaver::listClicked(QListViewItem *selectedItem)
141 populateList(); 143 populateList();
142 } else { 144 } else {
143 currentDir.cdUp(); 145 currentDir.cdUp();
144 populateList(); 146 populateList();
145 } 147 }
146 if(QDir(strItem).exists()){ 148 if(QDir(strItem).exists()){
147 currentDir.cd(strItem, TRUE); 149 currentDir.cd(strItem, TRUE);
148 populateList(); 150 populateList();
149 } 151 }
150 } // else 152 } // else
151// if( QFile::exists(strItem ) ) { 153// if( QFile::exists(strItem ) ) {
152// qDebug("We found our files!!"); 154// qDebug("We found our files!!");
153 155
154// OnOK(); 156// OnOK();
155 } //end not symlink 157 } //end not symlink
156 chdir(strItem.latin1()); 158 chdir(strItem.latin1());
157 159
158 160
159} 161}
160 162
161 163
162void fileSaver::closeEvent( QCloseEvent *e ) 164void fileSaver::closeEvent( QCloseEvent *e )
163{ 165{
164 if(e->isAccepted()) { 166 if(e->isAccepted()) {
165 e->accept(); 167 e->accept();
166 } else { 168 } else {
167 qDebug("not accepted"); 169 qDebug("not accepted");
168 done(-1); 170 done(-1);
169 } 171 }
170} 172}
171 173
172void fileSaver::accept() { 174void fileSaver::accept() {
173 selectedFileName = fileEdit->text(); 175 selectedFileName = fileEdit->text();
174 QString path = currentDir.canonicalPath()+"/" + selectedFileName; 176 QString path = currentDir.canonicalPath()+"/" + selectedFileName;
175 if( path.find("//",0,TRUE) ==-1 ) { 177 if( path.find("//",0,TRUE) ==-1 ) {
176 selectedFileName = path; 178 selectedFileName = path;
177 } else { 179 } else {
178 selectedFileName = currentDir.canonicalPath()+selectedFileName; 180 selectedFileName = currentDir.canonicalPath()+selectedFileName;
179 } 181 }
180 qDebug("going to save "+selectedFileName); 182 qDebug("going to save "+selectedFileName);
181 done(1); 183 done(1);
182} 184}