-rw-r--r-- | ChangeLog | 11 | ||||
-rw-r--r-- | library/datebookmonth.cpp | 9 |
2 files changed, 19 insertions, 1 deletions
@@ -1,16 +1,27 @@ | |||
1 | 2005-??-??Opie 1.2.2 | ||
2 | |||
3 | |||
4 | New Features | ||
5 | ------------ | ||
6 | |||
7 | |||
8 | Fixed Bugs | ||
9 | ---------- | ||
10 | * #1695 - Date selector use too small fontsize on VGA screen (hrw) | ||
11 | |||
1 | 2005-09-11Opie 1.2.1 | 12 | 2005-09-11Opie 1.2.1 |
2 | 13 | ||
3 | 14 | ||
4 | New Features | 15 | New Features |
5 | ------------ | 16 | ------------ |
6 | * OpieStumbler: Scans WiFi networks using the wireless extension scanning (skyhusker) | 17 | * OpieStumbler: Scans WiFi networks using the wireless extension scanning (skyhusker) |
7 | * Opie-Reader: Support for document formats ArriereGo and Reb, add flite output (tim,pohly) | 18 | * Opie-Reader: Support for document formats ArriereGo and Reb, add flite output (tim,pohly) |
8 | * Opie-Networksettings: Add support for wlan-ng devices and improve WEP handling (Dirk Opfer) | 19 | * Opie-Networksettings: Add support for wlan-ng devices and improve WEP handling (Dirk Opfer) |
9 | * Wellenreiter: Remove Joining networks - use OpieStumbler for that (mickeyl) | 20 | * Wellenreiter: Remove Joining networks - use OpieStumbler for that (mickeyl) |
10 | * Opie-Mobilemsg has gone unsupported - it never really worked and there will be a replacement (mickeyl) | 21 | * Opie-Mobilemsg has gone unsupported - it never really worked and there will be a replacement (mickeyl) |
11 | * Opie-Tabmanager has gone unsupported - it barely works and there is not much of a use of it anyway (mickeyl) | 22 | * Opie-Tabmanager has gone unsupported - it barely works and there is not much of a use of it anyway (mickeyl) |
12 | * Checkbook: Added configuration option to use smaller font for checkbook transaction tab (hrw) | 23 | * Checkbook: Added configuration option to use smaller font for checkbook transaction tab (hrw) |
13 | * ZSafe: Made UI conform to Opie standards (drw) | 24 | * ZSafe: Made UI conform to Opie standards (drw) |
14 | * Today Addressbook plugin: Fixed configuration to show/not show birthdays, use checkboxes for selection (hrw) | 25 | * Today Addressbook plugin: Fixed configuration to show/not show birthdays, use checkboxes for selection (hrw) |
15 | * Opie-Console: Read initial fixed font configuration from qpe.conf (mickeyl) | 26 | * Opie-Console: Read initial fixed font configuration from qpe.conf (mickeyl) |
16 | * Opie-PcmciaApplet: Configure insert/resume actions and bind unsupported cards (mickeyl) | 27 | * Opie-PcmciaApplet: Configure insert/resume actions and bind unsupported cards (mickeyl) |
diff --git a/library/datebookmonth.cpp b/library/datebookmonth.cpp index 2616b7b..ffdf335 100644 --- a/library/datebookmonth.cpp +++ b/library/datebookmonth.cpp | |||
@@ -648,33 +648,40 @@ void DayItemMonth::paint( QPainter *p, const QColorGroup &cg, | |||
648 | p->fillRect(x1, y, x2 - x1, h, colorNormal); | 648 | p->fillRect(x1, y, x2 - x1, h, colorNormal); |
649 | } | 649 | } |
650 | 650 | ||
651 | y += h; | 651 | y += h; |
652 | 652 | ||
653 | while(repeatLine.count() >= 2) { | 653 | while(repeatLine.count() >= 2) { |
654 | int x2 = repeatLine.pop(); | 654 | int x2 = repeatLine.pop(); |
655 | int x1 = repeatLine.pop(); | 655 | int x1 = repeatLine.pop(); |
656 | if (x2 < x1 + 2) | 656 | if (x2 < x1 + 2) |
657 | x2 = x1 + 2; | 657 | x2 = x1 + 2; |
658 | p->fillRect(x1, y, x2 - x1, h, colorRepeat); | 658 | p->fillRect(x1, y, x2 - x1, h, colorRepeat); |
659 | } | 659 | } |
660 | 660 | ||
661 | 661 | ||
662 | // Finally, draw the number. | 662 | // Finally, draw the number. |
663 | QFont f = p->font(); | 663 | QFont f = p->font(); |
664 | f.setPointSize( ( f.pointSize() / 3 ) * 2 ); | 664 | if(qApp->desktop()->width() >= 480) |
665 | { | ||
666 | f.setPointSize( f.pointSize() - 2 ); | ||
667 | } | ||
668 | else | ||
669 | { | ||
670 | f.setPointSize( ( f.pointSize() / 3 ) * 2 ); | ||
671 | } | ||
665 | p->setFont( f ); | 672 | p->setFont( f ); |
666 | QFontMetrics fm( f ); | 673 | QFontMetrics fm( f ); |
667 | p->drawText( 1, 1 + fm.ascent(), QString::number( day() ) ); | 674 | p->drawText( 1, 1 + fm.ascent(), QString::number( day() ) ); |
668 | 675 | ||
669 | p->restore(); | 676 | p->restore(); |
670 | } | 677 | } |
671 | 678 | ||
672 | 679 | ||
673 | 680 | ||
674 | void DayItemMonth::setType( Calendar::Day::Type t ) | 681 | void DayItemMonth::setType( Calendar::Day::Type t ) |
675 | { | 682 | { |
676 | switch ( t ) { | 683 | switch ( t ) { |
677 | case Calendar::Day::PrevMonth: | 684 | case Calendar::Day::PrevMonth: |
678 | case Calendar::Day::NextMonth: | 685 | case Calendar::Day::NextMonth: |
679 | back = QBrush( QColor( 224, 224, 224 ) ); | 686 | back = QBrush( QColor( 224, 224, 224 ) ); |
680 | forg = black; | 687 | forg = black; |