-rw-r--r-- | core/apps/textedit/fileBrowser.cpp | 3 | ||||
-rw-r--r-- | core/apps/textedit/fileSaver.cpp | 6 |
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 | |||
@@ -37,9 +37,10 @@ fileBrowser::fileBrowser( QWidget* parent, const char* name, bool modal, WFlags | |||
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 ); |
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 | |||
@@ -42,8 +42,10 @@ fileSaver::fileSaver( QWidget* parent, const char* name, bool modal, WFlags fl | |||
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 ); |
@@ -56,9 +58,9 @@ fileSaver::fileSaver( QWidget* parent, const char* name, bool modal, WFlags fl | |||
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(); |
@@ -161,9 +163,9 @@ void fileSaver::listClicked(QListViewItem *selectedItem) | |||
161 | 163 | ||
162 | void fileSaver::closeEvent( QCloseEvent *e ) | 164 | void 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 | } |