-rw-r--r-- | korganizer/mainwindow.cpp | 13 |
1 files changed, 12 insertions, 1 deletions
diff --git a/korganizer/mainwindow.cpp b/korganizer/mainwindow.cpp index e960424..9c2ac82 100644 --- a/korganizer/mainwindow.cpp +++ b/korganizer/mainwindow.cpp @@ -131,6 +131,7 @@ public: }; QPixmap* sgListViewCompletedPix[6]; +QPixmap* sgListViewJournalPix; int globalFlagBlockStartup; @@ -143,8 +144,8 @@ MainWindow::MainWindow( QWidget *parent, const char *name ) : sgListViewCompletedPix[2] = &listviewPix40; sgListViewCompletedPix[3] = &listviewPix60; sgListViewCompletedPix[4] = &listviewPix80; - if ( sgListViewCompletedPix[5]->height() < 5 ) { //int size = 12; + { sgListViewCompletedPix[5]->resize( 11, 11 ); sgListViewCompletedPix[5]->fill( Qt::white ); QPainter p ( sgListViewCompletedPix[5] ); @@ -160,6 +161,16 @@ MainWindow::MainWindow( QWidget *parent, const char *name ) : if ( iii ) p.fillRect( 1,1,iii*2,9,Qt::gray ); } + sgListViewJournalPix = &journalPix; + sgListViewJournalPix->resize( 11, 11 ); + sgListViewJournalPix->fill( Qt::white ); + { + QPainter p ( sgListViewJournalPix ); + p.drawRect( 0,0,11,11); + p.drawLine( 2,3,5,3); + p.drawLine( 2,5,8,5); + p.drawLine( 2,7,6,7); + } } mClosed = false; //QString confFile = KStandardDirs::appDir() + "config/korganizerrc"; |