summaryrefslogtreecommitdiff
path: root/core/pim/todo
authorzecke <zecke>2003-02-11 19:12:34 (UTC)
committer zecke <zecke>2003-02-11 19:12:34 (UTC)
commit17738622fd2b61138695441df860f8ecd16f286f (patch) (side-by-side diff)
tree11b6282188661c21d66fef3fb0397437842112a7 /core/pim/todo
parent5145521f5ff79d6a418244e33d357b5b8168e072 (diff)
downloadopie-17738622fd2b61138695441df860f8ecd16f286f.zip
opie-17738622fd2b61138695441df860f8ecd16f286f.tar.gz
opie-17738622fd2b61138695441df860f8ecd16f286f.tar.bz2
fix 0000535.
What is the right size? That depends on the user so save the columWidth() the user used so he should be happy
Diffstat (limited to 'core/pim/todo') (more/less context) (ignore whitespace changes)
-rw-r--r--core/pim/todo/tableview.cpp16
1 files changed, 13 insertions, 3 deletions
diff --git a/core/pim/todo/tableview.cpp b/core/pim/todo/tableview.cpp
index cec8b5e..ae27fab 100644
--- a/core/pim/todo/tableview.cpp
+++ b/core/pim/todo/tableview.cpp
@@ -55,6 +55,10 @@ void TableView::initConfig() {
Config config( "todo" );
config.setGroup( "Options" );
m_completeStrokeWidth = config.readNumEntry( "CompleteStrokeWidth", 8 );
+ for (int i = 0; i < numCols(); i++ ) {
+ int width = config.readNumEntry("Width"+QString::number(i), -1 );
+ setColumnWidth(i, width == -1 ? columnWidth(i) : width );
+ }
}
TableView::TableView( MainWindow* window, QWidget* wid )
@@ -103,6 +107,10 @@ TableView::TableView( MainWindow* window, QWidget* wid )
connect( m_menuTimer, SIGNAL(timeout()),
this, SLOT(slotShowMenu()) );
+ /* now let's init the config */
+ initConfig();
+
+
m_enablePaint = true;
setUpdatesEnabled( true );
viewport()->setUpdatesEnabled( true );
@@ -111,8 +119,7 @@ TableView::TableView( MainWindow* window, QWidget* wid )
setAscending( TRUE );
m_first = true;
- /* now let's init the config */
- initConfig();
+
}
/* a new day has started
* update the day
@@ -122,7 +129,10 @@ void TableView::newDay() {
updateView();
}
TableView::~TableView() {
-
+ Config config( "todo" );
+ config.setGroup( "Options" );
+ for (int i = 0; i < numCols(); i++ )
+ config.writeEntry("Width"+QString::number(i), columnWidth(i) );
}
void TableView::slotShowMenu() {
QPopupMenu *menu = todoWindow()->contextMenu( current(), sorted()[currentRow()].recurrence().doesRecur() );