author | zautrix <zautrix> | 2005-06-13 20:42:10 (UTC) |
---|---|---|
committer | zautrix <zautrix> | 2005-06-13 20:42:10 (UTC) |
commit | fe1114cea0321405b362d642912f1f72257c7cbd (patch) (unidiff) | |
tree | 89f5cc1050a86c497fc406ebbea88669b6bea1a6 | |
parent | 0000f74badd326f62620d818a5e5d9944e55bda0 (diff) | |
download | kdepimpi-fe1114cea0321405b362d642912f1f72257c7cbd.zip kdepimpi-fe1114cea0321405b362d642912f1f72257c7cbd.tar.gz kdepimpi-fe1114cea0321405b362d642912f1f72257c7cbd.tar.bz2 |
fixxxx
-rw-r--r-- | korganizer/calendarview.cpp | 45 | ||||
-rw-r--r-- | korganizer/calendarview.h | 1 | ||||
-rw-r--r-- | korganizer/kofilterview.cpp | 18 | ||||
-rw-r--r-- | korganizer/koprefs.h | 3 | ||||
-rw-r--r-- | korganizer/mainwindow.cpp | 12 |
5 files changed, 68 insertions, 11 deletions
diff --git a/korganizer/calendarview.cpp b/korganizer/calendarview.cpp index 6e60c56..b0be340 100644 --- a/korganizer/calendarview.cpp +++ b/korganizer/calendarview.cpp | |||
@@ -1498,918 +1498,947 @@ bool CalendarView::syncCalendar(QString filename, int mode) | |||
1498 | getEventViewerDialog()->setSyncMode( false ); | 1498 | getEventViewerDialog()->setSyncMode( false ); |
1499 | if ( syncOK ) { | 1499 | if ( syncOK ) { |
1500 | if ( mSyncManager->mWriteBackFile ) | 1500 | if ( mSyncManager->mWriteBackFile ) |
1501 | { | 1501 | { |
1502 | storage->setSaveFormat( new ICalFormat() ); | 1502 | storage->setSaveFormat( new ICalFormat() ); |
1503 | storage->save(); | 1503 | storage->save(); |
1504 | } | 1504 | } |
1505 | } | 1505 | } |
1506 | setModified( true ); | 1506 | setModified( true ); |
1507 | } | 1507 | } |
1508 | delete storage; | 1508 | delete storage; |
1509 | delete calendar; | 1509 | delete calendar; |
1510 | if ( syncOK ) | 1510 | if ( syncOK ) |
1511 | updateView(); | 1511 | updateView(); |
1512 | return syncOK; | 1512 | return syncOK; |
1513 | } | 1513 | } |
1514 | 1514 | ||
1515 | void CalendarView::syncExternal( int mode ) | 1515 | void CalendarView::syncExternal( int mode ) |
1516 | { | 1516 | { |
1517 | mGlobalSyncMode = SYNC_MODE_EXTERNAL; | 1517 | mGlobalSyncMode = SYNC_MODE_EXTERNAL; |
1518 | 1518 | ||
1519 | qApp->processEvents(); | 1519 | qApp->processEvents(); |
1520 | CalendarLocal* calendar = new CalendarLocal(); | 1520 | CalendarLocal* calendar = new CalendarLocal(); |
1521 | calendar->setTimeZoneId(KPimGlobalPrefs::instance()->mTimeZoneId); | 1521 | calendar->setTimeZoneId(KPimGlobalPrefs::instance()->mTimeZoneId); |
1522 | bool syncOK = false; | 1522 | bool syncOK = false; |
1523 | bool loadSuccess = false; | 1523 | bool loadSuccess = false; |
1524 | PhoneFormat* phoneFormat = 0; | 1524 | PhoneFormat* phoneFormat = 0; |
1525 | emit tempDisableBR(true); | 1525 | emit tempDisableBR(true); |
1526 | #ifndef DESKTOP_VERSION | 1526 | #ifndef DESKTOP_VERSION |
1527 | SharpFormat* sharpFormat = 0; | 1527 | SharpFormat* sharpFormat = 0; |
1528 | if ( mode == 0 ) { // sharp | 1528 | if ( mode == 0 ) { // sharp |
1529 | sharpFormat = new SharpFormat () ; | 1529 | sharpFormat = new SharpFormat () ; |
1530 | loadSuccess = sharpFormat->load( calendar, mCalendar ); | 1530 | loadSuccess = sharpFormat->load( calendar, mCalendar ); |
1531 | 1531 | ||
1532 | } else | 1532 | } else |
1533 | #endif | 1533 | #endif |
1534 | if ( mode == 1 ) { // phone | 1534 | if ( mode == 1 ) { // phone |
1535 | phoneFormat = new PhoneFormat (mCurrentSyncDevice, | 1535 | phoneFormat = new PhoneFormat (mCurrentSyncDevice, |
1536 | mSyncManager->mPhoneDevice, | 1536 | mSyncManager->mPhoneDevice, |
1537 | mSyncManager->mPhoneConnection, | 1537 | mSyncManager->mPhoneConnection, |
1538 | mSyncManager->mPhoneModel); | 1538 | mSyncManager->mPhoneModel); |
1539 | loadSuccess = phoneFormat->load( calendar,mCalendar); | 1539 | loadSuccess = phoneFormat->load( calendar,mCalendar); |
1540 | 1540 | ||
1541 | } else { | 1541 | } else { |
1542 | emit tempDisableBR(false); | 1542 | emit tempDisableBR(false); |
1543 | return; | 1543 | return; |
1544 | } | 1544 | } |
1545 | if ( loadSuccess ) { | 1545 | if ( loadSuccess ) { |
1546 | getEventViewerDialog()->setSyncMode( true ); | 1546 | getEventViewerDialog()->setSyncMode( true ); |
1547 | syncOK = synchronizeCalendar( mCalendar, calendar, mSyncManager->mSyncAlgoPrefs ); | 1547 | syncOK = synchronizeCalendar( mCalendar, calendar, mSyncManager->mSyncAlgoPrefs ); |
1548 | getEventViewerDialog()->setSyncMode( false ); | 1548 | getEventViewerDialog()->setSyncMode( false ); |
1549 | qApp->processEvents(); | 1549 | qApp->processEvents(); |
1550 | if ( syncOK ) { | 1550 | if ( syncOK ) { |
1551 | if ( mSyncManager->mWriteBackFile ) | 1551 | if ( mSyncManager->mWriteBackFile ) |
1552 | { | 1552 | { |
1553 | QPtrList<Incidence> iL = mCalendar->rawIncidences(); | 1553 | QPtrList<Incidence> iL = mCalendar->rawIncidences(); |
1554 | Incidence* inc = iL.first(); | 1554 | Incidence* inc = iL.first(); |
1555 | if ( phoneFormat ) { | 1555 | if ( phoneFormat ) { |
1556 | while ( inc ) { | 1556 | while ( inc ) { |
1557 | inc->removeID(mCurrentSyncDevice); | 1557 | inc->removeID(mCurrentSyncDevice); |
1558 | inc = iL.next(); | 1558 | inc = iL.next(); |
1559 | } | 1559 | } |
1560 | } | 1560 | } |
1561 | #ifndef DESKTOP_VERSION | 1561 | #ifndef DESKTOP_VERSION |
1562 | if ( sharpFormat ) | 1562 | if ( sharpFormat ) |
1563 | sharpFormat->save(calendar); | 1563 | sharpFormat->save(calendar); |
1564 | #endif | 1564 | #endif |
1565 | if ( phoneFormat ) | 1565 | if ( phoneFormat ) |
1566 | phoneFormat->save(calendar); | 1566 | phoneFormat->save(calendar); |
1567 | iL = calendar->rawIncidences(); | 1567 | iL = calendar->rawIncidences(); |
1568 | inc = iL.first(); | 1568 | inc = iL.first(); |
1569 | Incidence* loc; | 1569 | Incidence* loc; |
1570 | while ( inc ) { | 1570 | while ( inc ) { |
1571 | if ( inc->tempSyncStat() == SYNC_TEMPSTATE_NEW_ID ) { | 1571 | if ( inc->tempSyncStat() == SYNC_TEMPSTATE_NEW_ID ) { |
1572 | loc = mCalendar->incidence(inc->uid() ); | 1572 | loc = mCalendar->incidence(inc->uid() ); |
1573 | if ( loc ) { | 1573 | if ( loc ) { |
1574 | loc->setID(mCurrentSyncDevice, inc->getID(mCurrentSyncDevice) ); | 1574 | loc->setID(mCurrentSyncDevice, inc->getID(mCurrentSyncDevice) ); |
1575 | loc->setCsum( mCurrentSyncDevice, inc->getCsum(mCurrentSyncDevice) ); | 1575 | loc->setCsum( mCurrentSyncDevice, inc->getCsum(mCurrentSyncDevice) ); |
1576 | } | 1576 | } |
1577 | } | 1577 | } |
1578 | inc = iL.next(); | 1578 | inc = iL.next(); |
1579 | } | 1579 | } |
1580 | Incidence* lse = getLastSyncEvent(); | 1580 | Incidence* lse = getLastSyncEvent(); |
1581 | if ( lse ) { | 1581 | if ( lse ) { |
1582 | lse->setReadOnly( false ); | 1582 | lse->setReadOnly( false ); |
1583 | lse->setDescription( "" ); | 1583 | lse->setDescription( "" ); |
1584 | lse->setReadOnly( true ); | 1584 | lse->setReadOnly( true ); |
1585 | } | 1585 | } |
1586 | } | 1586 | } |
1587 | } else { | 1587 | } else { |
1588 | topLevelWidget()->setCaption( i18n("Sync cancelled or failed.") ); | 1588 | topLevelWidget()->setCaption( i18n("Sync cancelled or failed.") ); |
1589 | } | 1589 | } |
1590 | setModified( true ); | 1590 | setModified( true ); |
1591 | } else { | 1591 | } else { |
1592 | QString question = i18n("Sorry, the database access\ncommand failed!\n\nNothing synced!\n") ; | 1592 | QString question = i18n("Sorry, the database access\ncommand failed!\n\nNothing synced!\n") ; |
1593 | QMessageBox::information( 0, i18n("KO/Pi Import - ERROR"), | 1593 | QMessageBox::information( 0, i18n("KO/Pi Import - ERROR"), |
1594 | question, i18n("Ok")) ; | 1594 | question, i18n("Ok")) ; |
1595 | 1595 | ||
1596 | } | 1596 | } |
1597 | delete calendar; | 1597 | delete calendar; |
1598 | updateView(); | 1598 | updateView(); |
1599 | emit tempDisableBR(false); | 1599 | emit tempDisableBR(false); |
1600 | return ;//syncOK; | 1600 | return ;//syncOK; |
1601 | 1601 | ||
1602 | } | 1602 | } |
1603 | 1603 | ||
1604 | bool CalendarView::importBday() | 1604 | bool CalendarView::importBday() |
1605 | { | 1605 | { |
1606 | #ifndef KORG_NOKABC | 1606 | #ifndef KORG_NOKABC |
1607 | 1607 | ||
1608 | #ifdef DESKTOP_VERSION | 1608 | #ifdef DESKTOP_VERSION |
1609 | KABC::StdAddressBook* AddressBook = KABC::StdAddressBook::self( true ); | 1609 | KABC::StdAddressBook* AddressBook = KABC::StdAddressBook::self( true ); |
1610 | KABC::AddressBook::Iterator it; | 1610 | KABC::AddressBook::Iterator it; |
1611 | int count = 0; | 1611 | int count = 0; |
1612 | for( it = AddressBook->begin(); it != AddressBook->end(); ++it ) { | 1612 | for( it = AddressBook->begin(); it != AddressBook->end(); ++it ) { |
1613 | ++count; | 1613 | ++count; |
1614 | } | 1614 | } |
1615 | QProgressBar bar(count,0 ); | 1615 | QProgressBar bar(count,0 ); |
1616 | int w = 300; | 1616 | int w = 300; |
1617 | if ( QApplication::desktop()->width() < 320 ) | 1617 | if ( QApplication::desktop()->width() < 320 ) |
1618 | w = 220; | 1618 | w = 220; |
1619 | int h = bar.sizeHint().height() ; | 1619 | int h = bar.sizeHint().height() ; |
1620 | int dw = QApplication::desktop()->width(); | 1620 | int dw = QApplication::desktop()->width(); |
1621 | int dh = QApplication::desktop()->height(); | 1621 | int dh = QApplication::desktop()->height(); |
1622 | bar.setGeometry( (dw-w)/2, (dh - h )/2 ,w,h ); | 1622 | bar.setGeometry( (dw-w)/2, (dh - h )/2 ,w,h ); |
1623 | bar.show(); | 1623 | bar.show(); |
1624 | bar.setCaption (i18n("Reading addressbook - close to abort!") ); | 1624 | bar.setCaption (i18n("Reading addressbook - close to abort!") ); |
1625 | qApp->processEvents(); | 1625 | qApp->processEvents(); |
1626 | count = 0; | 1626 | count = 0; |
1627 | int addCount = 0; | 1627 | int addCount = 0; |
1628 | KCal::Attendee* a = 0; | 1628 | KCal::Attendee* a = 0; |
1629 | for( it = AddressBook->begin(); it != AddressBook->end(); ++it ) { | 1629 | for( it = AddressBook->begin(); it != AddressBook->end(); ++it ) { |
1630 | if ( ! bar.isVisible() ) | 1630 | if ( ! bar.isVisible() ) |
1631 | return false; | 1631 | return false; |
1632 | bar.setProgress( count++ ); | 1632 | bar.setProgress( count++ ); |
1633 | qApp->processEvents(); | 1633 | qApp->processEvents(); |
1634 | //qDebug("add BDay %s %s", (*it).realName().latin1(),(*it).birthday().date().toString().latin1() ); | 1634 | //qDebug("add BDay %s %s", (*it).realName().latin1(),(*it).birthday().date().toString().latin1() ); |
1635 | if ( (*it).birthday().date().isValid() ){ | 1635 | if ( (*it).birthday().date().isValid() ){ |
1636 | a = new KCal::Attendee( (*it).realName(), (*it).preferredEmail(),false,KCal::Attendee::NeedsAction,KCal::Attendee::ReqParticipant,(*it).uid()) ; | 1636 | a = new KCal::Attendee( (*it).realName(), (*it).preferredEmail(),false,KCal::Attendee::NeedsAction,KCal::Attendee::ReqParticipant,(*it).uid()) ; |
1637 | if ( addAnniversary( (*it).birthday().date(), (*it).assembledName(), a, true ) ) | 1637 | if ( addAnniversary( (*it).birthday().date(), (*it).assembledName(), a, true ) ) |
1638 | ++addCount; | 1638 | ++addCount; |
1639 | } | 1639 | } |
1640 | QDate anni = KGlobal::locale()->readDate( (*it).custom("KADDRESSBOOK", "X-Anniversary" ), "%Y-%m-%d"); | 1640 | QDate anni = KGlobal::locale()->readDate( (*it).custom("KADDRESSBOOK", "X-Anniversary" ), "%Y-%m-%d"); |
1641 | if ( anni.isValid() ){ | 1641 | if ( anni.isValid() ){ |
1642 | a = new KCal::Attendee( (*it).realName(), (*it).preferredEmail(),false,KCal::Attendee::NeedsAction,KCal::Attendee::ReqParticipant,(*it).uid()) ; | 1642 | a = new KCal::Attendee( (*it).realName(), (*it).preferredEmail(),false,KCal::Attendee::NeedsAction,KCal::Attendee::ReqParticipant,(*it).uid()) ; |
1643 | if ( addAnniversary( anni, (*it).assembledName(), a, false ) ) | 1643 | if ( addAnniversary( anni, (*it).assembledName(), a, false ) ) |
1644 | ++addCount; | 1644 | ++addCount; |
1645 | } | 1645 | } |
1646 | } | 1646 | } |
1647 | updateView(); | 1647 | updateView(); |
1648 | topLevelWidget()->setCaption(QString::number( addCount )+ i18n(" birthdays/anniversaries added!")); | 1648 | topLevelWidget()->setCaption(QString::number( addCount )+ i18n(" birthdays/anniversaries added!")); |
1649 | #else //DESKTOP_VERSION | 1649 | #else //DESKTOP_VERSION |
1650 | 1650 | ||
1651 | ExternalAppHandler::instance()->requestBirthdayListFromKAPI("QPE/Application/kopi", this->name() /* name is here the unique uid*/); | 1651 | ExternalAppHandler::instance()->requestBirthdayListFromKAPI("QPE/Application/kopi", this->name() /* name is here the unique uid*/); |
1652 | // the result should now arrive through method insertBirthdays | 1652 | // the result should now arrive through method insertBirthdays |
1653 | 1653 | ||
1654 | #endif //DESKTOP_VERSION | 1654 | #endif //DESKTOP_VERSION |
1655 | 1655 | ||
1656 | #endif //KORG_NOKABC | 1656 | #endif //KORG_NOKABC |
1657 | 1657 | ||
1658 | 1658 | ||
1659 | return true; | 1659 | return true; |
1660 | } | 1660 | } |
1661 | 1661 | ||
1662 | // This method will be called from Ka/Pi as a response to requestBirthdayListFromKAPI | 1662 | // This method will be called from Ka/Pi as a response to requestBirthdayListFromKAPI |
1663 | void CalendarView::insertBirthdays(const QString& uid, const QStringList& birthdayList, | 1663 | void CalendarView::insertBirthdays(const QString& uid, const QStringList& birthdayList, |
1664 | const QStringList& anniversaryList, const QStringList& realNameList, | 1664 | const QStringList& anniversaryList, const QStringList& realNameList, |
1665 | const QStringList& emailList, const QStringList& assembledNameList, | 1665 | const QStringList& emailList, const QStringList& assembledNameList, |
1666 | const QStringList& uidList) | 1666 | const QStringList& uidList) |
1667 | { | 1667 | { |
1668 | //qDebug("KO::CalendarView::insertBirthdays"); | 1668 | //qDebug("KO::CalendarView::insertBirthdays"); |
1669 | if (uid == this->name()) | 1669 | if (uid == this->name()) |
1670 | { | 1670 | { |
1671 | int count = birthdayList.count(); | 1671 | int count = birthdayList.count(); |
1672 | int addCount = 0; | 1672 | int addCount = 0; |
1673 | KCal::Attendee* a = 0; | 1673 | KCal::Attendee* a = 0; |
1674 | 1674 | ||
1675 | //qDebug("CalView 1 %i", count); | 1675 | //qDebug("CalView 1 %i", count); |
1676 | 1676 | ||
1677 | QProgressBar bar(count,0 ); | 1677 | QProgressBar bar(count,0 ); |
1678 | int w = 300; | 1678 | int w = 300; |
1679 | if ( QApplication::desktop()->width() < 320 ) | 1679 | if ( QApplication::desktop()->width() < 320 ) |
1680 | w = 220; | 1680 | w = 220; |
1681 | int h = bar.sizeHint().height() ; | 1681 | int h = bar.sizeHint().height() ; |
1682 | int dw = QApplication::desktop()->width(); | 1682 | int dw = QApplication::desktop()->width(); |
1683 | int dh = QApplication::desktop()->height(); | 1683 | int dh = QApplication::desktop()->height(); |
1684 | bar.setGeometry( (dw-w)/2, (dh - h )/2 ,w,h ); | 1684 | bar.setGeometry( (dw-w)/2, (dh - h )/2 ,w,h ); |
1685 | bar.show(); | 1685 | bar.show(); |
1686 | bar.setCaption (i18n("inserting birthdays - close to abort!") ); | 1686 | bar.setCaption (i18n("inserting birthdays - close to abort!") ); |
1687 | qApp->processEvents(); | 1687 | qApp->processEvents(); |
1688 | 1688 | ||
1689 | QDate birthday; | 1689 | QDate birthday; |
1690 | QDate anniversary; | 1690 | QDate anniversary; |
1691 | QString realName; | 1691 | QString realName; |
1692 | QString email; | 1692 | QString email; |
1693 | QString assembledName; | 1693 | QString assembledName; |
1694 | QString uid; | 1694 | QString uid; |
1695 | bool ok = true; | 1695 | bool ok = true; |
1696 | for ( int i = 0; i < count; i++) | 1696 | for ( int i = 0; i < count; i++) |
1697 | { | 1697 | { |
1698 | if ( ! bar.isVisible() ) | 1698 | if ( ! bar.isVisible() ) |
1699 | return; | 1699 | return; |
1700 | bar.setProgress( i ); | 1700 | bar.setProgress( i ); |
1701 | qApp->processEvents(); | 1701 | qApp->processEvents(); |
1702 | 1702 | ||
1703 | birthday = KGlobal::locale()->readDate(birthdayList[i], KLocale::ISODate, &ok); | 1703 | birthday = KGlobal::locale()->readDate(birthdayList[i], KLocale::ISODate, &ok); |
1704 | if (!ok) { | 1704 | if (!ok) { |
1705 | ;//qDebug("CalendarView::insertBirthdays found invalid birthday: %s",birthdayList[i].latin1()); | 1705 | ;//qDebug("CalendarView::insertBirthdays found invalid birthday: %s",birthdayList[i].latin1()); |
1706 | } | 1706 | } |
1707 | 1707 | ||
1708 | anniversary = KGlobal::locale()->readDate(anniversaryList[i], KLocale::ISODate, &ok); | 1708 | anniversary = KGlobal::locale()->readDate(anniversaryList[i], KLocale::ISODate, &ok); |
1709 | if (!ok) { | 1709 | if (!ok) { |
1710 | ;//qDebug("CalendarView::insertBirthdays found invalid anniversary: %s",anniversaryList[i].latin1()); | 1710 | ;//qDebug("CalendarView::insertBirthdays found invalid anniversary: %s",anniversaryList[i].latin1()); |
1711 | } | 1711 | } |
1712 | realName = realNameList[i]; | 1712 | realName = realNameList[i]; |
1713 | email = emailList[i]; | 1713 | email = emailList[i]; |
1714 | assembledName = assembledNameList[i]; | 1714 | assembledName = assembledNameList[i]; |
1715 | uid = uidList[i]; | 1715 | uid = uidList[i]; |
1716 | //qDebug("insert birthday in KO/Pi: %s,%s,%s,%s: %s, %s", realName.latin1(), email.latin1(), assembledName.latin1(), uid.latin1(), birthdayList[i].latin1(), anniversaryList[i].latin1() ); | 1716 | //qDebug("insert birthday in KO/Pi: %s,%s,%s,%s: %s, %s", realName.latin1(), email.latin1(), assembledName.latin1(), uid.latin1(), birthdayList[i].latin1(), anniversaryList[i].latin1() ); |
1717 | 1717 | ||
1718 | if ( birthday.isValid() ){ | 1718 | if ( birthday.isValid() ){ |
1719 | a = new KCal::Attendee( realName, email,false,KCal::Attendee::NeedsAction, | 1719 | a = new KCal::Attendee( realName, email,false,KCal::Attendee::NeedsAction, |
1720 | KCal::Attendee::ReqParticipant,uid) ; | 1720 | KCal::Attendee::ReqParticipant,uid) ; |
1721 | if ( addAnniversary( birthday, assembledName, a, true ) ) | 1721 | if ( addAnniversary( birthday, assembledName, a, true ) ) |
1722 | ++addCount; | 1722 | ++addCount; |
1723 | } | 1723 | } |
1724 | 1724 | ||
1725 | if ( anniversary.isValid() ){ | 1725 | if ( anniversary.isValid() ){ |
1726 | a = new KCal::Attendee( realName, email,false,KCal::Attendee::NeedsAction, | 1726 | a = new KCal::Attendee( realName, email,false,KCal::Attendee::NeedsAction, |
1727 | KCal::Attendee::ReqParticipant,uid) ; | 1727 | KCal::Attendee::ReqParticipant,uid) ; |
1728 | if ( addAnniversary( anniversary, assembledName, a, false ) ) | 1728 | if ( addAnniversary( anniversary, assembledName, a, false ) ) |
1729 | ++addCount; | 1729 | ++addCount; |
1730 | } | 1730 | } |
1731 | } | 1731 | } |
1732 | 1732 | ||
1733 | updateView(); | 1733 | updateView(); |
1734 | topLevelWidget()->setCaption(QString::number( addCount )+ i18n(" birthdays/anniversaries added!")); | 1734 | topLevelWidget()->setCaption(QString::number( addCount )+ i18n(" birthdays/anniversaries added!")); |
1735 | 1735 | ||
1736 | } | 1736 | } |
1737 | 1737 | ||
1738 | } | 1738 | } |
1739 | 1739 | ||
1740 | 1740 | ||
1741 | 1741 | ||
1742 | bool CalendarView::addAnniversary( QDate date, QString name, KCal::Attendee* a, bool birthday) | 1742 | bool CalendarView::addAnniversary( QDate date, QString name, KCal::Attendee* a, bool birthday) |
1743 | { | 1743 | { |
1744 | //qDebug("addAnni "); | 1744 | //qDebug("addAnni "); |
1745 | Event * ev = new Event(); | 1745 | Event * ev = new Event(); |
1746 | ev->setOrganizer(KOPrefs::instance()->email()); | 1746 | ev->setOrganizer(KOPrefs::instance()->email()); |
1747 | if ( a ) { | 1747 | if ( a ) { |
1748 | ev->addAttendee( a ); | 1748 | ev->addAttendee( a ); |
1749 | } | 1749 | } |
1750 | QString kind; | 1750 | QString kind; |
1751 | if ( birthday ) { | 1751 | if ( birthday ) { |
1752 | kind = i18n( "Birthday" ); | 1752 | kind = i18n( "Birthday" ); |
1753 | ev->setSummary( name + " (" + QString::number(date.year()) +")"); | 1753 | ev->setSummary( name + " (" + QString::number(date.year()) +")"); |
1754 | } | 1754 | } |
1755 | else { | 1755 | else { |
1756 | kind = i18n( "Anniversary" ); | 1756 | kind = i18n( "Anniversary" ); |
1757 | ev->setSummary( name + " (" + QString::number(date.year()) +") " + kind ); | 1757 | ev->setSummary( name + " (" + QString::number(date.year()) +") " + kind ); |
1758 | } | 1758 | } |
1759 | ev->setCategories( kind ); | 1759 | ev->setCategories( kind ); |
1760 | ev->setDtStart( QDateTime(date) ); | 1760 | ev->setDtStart( QDateTime(date) ); |
1761 | ev->setDtEnd( QDateTime(date) ); | 1761 | ev->setDtEnd( QDateTime(date) ); |
1762 | ev->setFloats( true ); | 1762 | ev->setFloats( true ); |
1763 | Recurrence * rec = ev->recurrence(); | 1763 | Recurrence * rec = ev->recurrence(); |
1764 | rec->setYearly(Recurrence::rYearlyMonth,1,-1); | 1764 | rec->setYearly(Recurrence::rYearlyMonth,1,-1); |
1765 | rec->addYearlyNum( date.month() ); | 1765 | rec->addYearlyNum( date.month() ); |
1766 | if ( !mCalendar->addAnniversaryNoDup( ev ) ) { | 1766 | if ( !mCalendar->addAnniversaryNoDup( ev ) ) { |
1767 | delete ev; | 1767 | delete ev; |
1768 | return false; | 1768 | return false; |
1769 | } | 1769 | } |
1770 | return true; | 1770 | return true; |
1771 | 1771 | ||
1772 | } | 1772 | } |
1773 | bool CalendarView::importQtopia( const QString &categories, | 1773 | bool CalendarView::importQtopia( const QString &categories, |
1774 | const QString &datebook, | 1774 | const QString &datebook, |
1775 | const QString &todolist ) | 1775 | const QString &todolist ) |
1776 | { | 1776 | { |
1777 | 1777 | ||
1778 | QtopiaFormat qtopiaFormat; | 1778 | QtopiaFormat qtopiaFormat; |
1779 | qtopiaFormat.setCategoriesList ( &(KOPrefs::instance()->mCustomCategories)); | 1779 | qtopiaFormat.setCategoriesList ( &(KOPrefs::instance()->mCustomCategories)); |
1780 | if ( !categories.isEmpty() ) qtopiaFormat.load( mCalendar, categories ); | 1780 | if ( !categories.isEmpty() ) qtopiaFormat.load( mCalendar, categories ); |
1781 | if ( !datebook.isEmpty() ) qtopiaFormat.load( mCalendar, datebook ); | 1781 | if ( !datebook.isEmpty() ) qtopiaFormat.load( mCalendar, datebook ); |
1782 | if ( !todolist.isEmpty() ) qtopiaFormat.load( mCalendar, todolist ); | 1782 | if ( !todolist.isEmpty() ) qtopiaFormat.load( mCalendar, todolist ); |
1783 | 1783 | ||
1784 | updateView(); | 1784 | updateView(); |
1785 | return true; | 1785 | return true; |
1786 | 1786 | ||
1787 | #if 0 | 1787 | #if 0 |
1788 | mGlobalSyncMode = SYNC_MODE_QTOPIA; | 1788 | mGlobalSyncMode = SYNC_MODE_QTOPIA; |
1789 | mCurrentSyncDevice = "qtopia-XML"; | 1789 | mCurrentSyncDevice = "qtopia-XML"; |
1790 | if ( mSyncManager->mAskForPreferences ) | 1790 | if ( mSyncManager->mAskForPreferences ) |
1791 | edit_sync_options(); | 1791 | edit_sync_options(); |
1792 | qApp->processEvents(); | 1792 | qApp->processEvents(); |
1793 | CalendarLocal* calendar = new CalendarLocal(); | 1793 | CalendarLocal* calendar = new CalendarLocal(); |
1794 | calendar->setTimeZoneId(KPimGlobalPrefs::instance()->mTimeZoneId); | 1794 | calendar->setTimeZoneId(KPimGlobalPrefs::instance()->mTimeZoneId); |
1795 | bool syncOK = false; | 1795 | bool syncOK = false; |
1796 | QtopiaFormat qtopiaFormat; | 1796 | QtopiaFormat qtopiaFormat; |
1797 | qtopiaFormat.setCategoriesList ( &(KOPrefs::instance()->mCustomCategories)); | 1797 | qtopiaFormat.setCategoriesList ( &(KOPrefs::instance()->mCustomCategories)); |
1798 | bool loadOk = true; | 1798 | bool loadOk = true; |
1799 | if ( !categories.isEmpty() ) | 1799 | if ( !categories.isEmpty() ) |
1800 | loadOk = qtopiaFormat.load( calendar, categories ); | 1800 | loadOk = qtopiaFormat.load( calendar, categories ); |
1801 | if ( loadOk && !datebook.isEmpty() ) | 1801 | if ( loadOk && !datebook.isEmpty() ) |
1802 | loadOk = qtopiaFormat.load( calendar, datebook ); | 1802 | loadOk = qtopiaFormat.load( calendar, datebook ); |
1803 | if ( loadOk && !todolist.isEmpty() ) | 1803 | if ( loadOk && !todolist.isEmpty() ) |
1804 | loadOk = qtopiaFormat.load( calendar, todolist ); | 1804 | loadOk = qtopiaFormat.load( calendar, todolist ); |
1805 | 1805 | ||
1806 | if ( loadOk ) { | 1806 | if ( loadOk ) { |
1807 | getEventViewerDialog()->setSyncMode( true ); | 1807 | getEventViewerDialog()->setSyncMode( true ); |
1808 | syncOK = synchronizeCalendar( mCalendar, calendar, mSyncManager->mSyncAlgoPrefs ); | 1808 | syncOK = synchronizeCalendar( mCalendar, calendar, mSyncManager->mSyncAlgoPrefs ); |
1809 | getEventViewerDialog()->setSyncMode( false ); | 1809 | getEventViewerDialog()->setSyncMode( false ); |
1810 | qApp->processEvents(); | 1810 | qApp->processEvents(); |
1811 | if ( syncOK ) { | 1811 | if ( syncOK ) { |
1812 | if ( mSyncManager->mWriteBackFile ) | 1812 | if ( mSyncManager->mWriteBackFile ) |
1813 | { | 1813 | { |
1814 | // write back XML file | 1814 | // write back XML file |
1815 | 1815 | ||
1816 | } | 1816 | } |
1817 | setModified( true ); | 1817 | setModified( true ); |
1818 | } | 1818 | } |
1819 | } else { | 1819 | } else { |
1820 | QString question = i18n("Sorry, the file loading\ncommand failed!\n\nNothing synced!\n") ; | 1820 | QString question = i18n("Sorry, the file loading\ncommand failed!\n\nNothing synced!\n") ; |
1821 | QMessageBox::information( 0, i18n("KO/Pi Sync - ERROR"), | 1821 | QMessageBox::information( 0, i18n("KO/Pi Sync - ERROR"), |
1822 | question, i18n("Ok")) ; | 1822 | question, i18n("Ok")) ; |
1823 | } | 1823 | } |
1824 | delete calendar; | 1824 | delete calendar; |
1825 | updateView(); | 1825 | updateView(); |
1826 | return syncOK; | 1826 | return syncOK; |
1827 | 1827 | ||
1828 | 1828 | ||
1829 | #endif | 1829 | #endif |
1830 | 1830 | ||
1831 | } | 1831 | } |
1832 | 1832 | ||
1833 | void CalendarView::setSyncEventsReadOnly() | 1833 | void CalendarView::setSyncEventsReadOnly() |
1834 | { | 1834 | { |
1835 | Event * ev; | 1835 | Event * ev; |
1836 | QPtrList<Event> eL = mCalendar->rawEvents(); | 1836 | QPtrList<Event> eL = mCalendar->rawEvents(); |
1837 | ev = eL.first(); | 1837 | ev = eL.first(); |
1838 | while ( ev ) { | 1838 | while ( ev ) { |
1839 | if ( ev->uid().left(15) == QString("last-syncEvent-") ) | 1839 | if ( ev->uid().left(15) == QString("last-syncEvent-") ) |
1840 | ev->setReadOnly( true ); | 1840 | ev->setReadOnly( true ); |
1841 | ev = eL.next(); | 1841 | ev = eL.next(); |
1842 | } | 1842 | } |
1843 | } | 1843 | } |
1844 | 1844 | ||
1845 | bool CalendarView::loadCalendars() | 1845 | bool CalendarView::loadCalendars() |
1846 | { | 1846 | { |
1847 | QPtrList<KopiCalendarFile> calendars = KOPrefs::instance()->mCalendars; | 1847 | QPtrList<KopiCalendarFile> calendars = KOPrefs::instance()->mCalendars; |
1848 | KopiCalendarFile * cal = calendars.first(); | 1848 | KopiCalendarFile * cal = calendars.first(); |
1849 | mCalendar->setDefaultCalendar( 1 ); | 1849 | mCalendar->setDefaultCalendar( 1 ); |
1850 | openCalendar( MainWindow::defaultFileName(), false ); | 1850 | openCalendar( MainWindow::defaultFileName(), false ); |
1851 | cal = calendars.next(); | 1851 | cal = calendars.next(); |
1852 | while ( cal ) { | 1852 | while ( cal ) { |
1853 | addCalendar( cal ); | 1853 | addCalendar( cal ); |
1854 | cal = calendars.next(); | 1854 | cal = calendars.next(); |
1855 | } | 1855 | } |
1856 | restoreCalendarSettings(); | 1856 | restoreCalendarSettings(); |
1857 | mCalendar->reInitAlarmSettings(); | 1857 | mCalendar->reInitAlarmSettings(); |
1858 | setSyncEventsReadOnly(); | 1858 | setSyncEventsReadOnly(); |
1859 | updateUnmanagedViews(); | 1859 | updateUnmanagedViews(); |
1860 | updateView(); | 1860 | updateView(); |
1861 | } | 1861 | } |
1862 | bool CalendarView::restoreCalendarSettings() | 1862 | bool CalendarView::restoreCalendarSettings() |
1863 | { | 1863 | { |
1864 | QPtrList<KopiCalendarFile> calendars = KOPrefs::instance()->mCalendars; | 1864 | QPtrList<KopiCalendarFile> calendars = KOPrefs::instance()->mCalendars; |
1865 | KopiCalendarFile * cal = calendars.first(); | 1865 | KopiCalendarFile * cal = calendars.first(); |
1866 | while ( cal ) { | 1866 | while ( cal ) { |
1867 | mCalendar->setCalendarEnabled( cal->mCalNumber,cal->isEnabled ); | 1867 | mCalendar->setCalendarEnabled( cal->mCalNumber,cal->isEnabled ); |
1868 | mCalendar->setAlarmEnabled( cal->mCalNumber, cal->isAlarmEnabled ); | 1868 | mCalendar->setAlarmEnabled( cal->mCalNumber, cal->isAlarmEnabled ); |
1869 | mCalendar->setReadOnly( cal->mCalNumber, cal->isReadOnly ); | 1869 | mCalendar->setReadOnly( cal->mCalNumber, cal->isReadOnly ); |
1870 | if ( cal->isStandard ) | 1870 | if ( cal->isStandard ) |
1871 | mCalendar->setDefaultCalendar( cal->mCalNumber ); | 1871 | mCalendar->setDefaultCalendar( cal->mCalNumber ); |
1872 | cal = calendars.next(); | 1872 | cal = calendars.next(); |
1873 | } | 1873 | } |
1874 | } | 1874 | } |
1875 | void CalendarView::addCalendarId( int id ) | 1875 | void CalendarView::addCalendarId( int id ) |
1876 | { | 1876 | { |
1877 | KopiCalendarFile * cal = KOPrefs::instance()->getCalendar( id ); | 1877 | KopiCalendarFile * cal = KOPrefs::instance()->getCalendar( id ); |
1878 | addCalendar( cal ); | 1878 | addCalendar( cal ); |
1879 | } | 1879 | } |
1880 | bool CalendarView::addCalendar( KopiCalendarFile * cal ) | 1880 | bool CalendarView::addCalendar( KopiCalendarFile * cal ) |
1881 | { | 1881 | { |
1882 | 1882 | cal->mErrorOnLoad = false; | |
1883 | if ( mCalendar->addCalendarFile( cal->mFileName, cal->mCalNumber )) | 1883 | if ( mCalendar->addCalendarFile( cal->mFileName, cal->mCalNumber )) { |
1884 | cal->mLoadDt = QDateTime::currentDateTime(); | ||
1884 | return true; | 1885 | return true; |
1886 | } | ||
1885 | qDebug("KO: Error adding calendar file %1 ",cal->mFileName.latin1() ); | 1887 | qDebug("KO: Error adding calendar file %1 ",cal->mFileName.latin1() ); |
1886 | KMessageBox::error(this,i18n("Error loading calendar file\n%1.").arg(cal->mFileName)); | 1888 | KMessageBox::error(this,i18n("Error loading calendar file\n%1.").arg(cal->mFileName)); |
1889 | cal->mErrorOnLoad = true; | ||
1887 | return false; | 1890 | return false; |
1888 | } | 1891 | } |
1889 | bool CalendarView::openCalendar(QString filename, bool merge) | 1892 | bool CalendarView::openCalendar(QString filename, bool merge) |
1890 | { | 1893 | { |
1891 | 1894 | ||
1892 | if (filename.isEmpty()) { | 1895 | if (filename.isEmpty()) { |
1893 | return false; | 1896 | return false; |
1894 | } | 1897 | } |
1895 | 1898 | ||
1896 | if (!QFile::exists(filename)) { | 1899 | if (!QFile::exists(filename)) { |
1897 | KMessageBox::error(this,i18n("File does not exist:\n '%1'.").arg(filename)); | 1900 | KMessageBox::error(this,i18n("File does not exist:\n '%1'.").arg(filename)); |
1898 | return false; | 1901 | return false; |
1899 | } | 1902 | } |
1900 | 1903 | ||
1901 | globalFlagBlockAgenda = 1; | 1904 | globalFlagBlockAgenda = 1; |
1902 | clearAllViews(); | 1905 | clearAllViews(); |
1903 | if (!merge) { | 1906 | if (!merge) { |
1904 | mViewManager->setDocumentId( filename ); | 1907 | mViewManager->setDocumentId( filename ); |
1905 | mCalendar->close(); | 1908 | mCalendar->close(); |
1906 | } | 1909 | } |
1907 | mStorage->setFileName( filename ); | 1910 | mStorage->setFileName( filename ); |
1908 | 1911 | ||
1909 | if ( mStorage->load() ) { | 1912 | if ( mStorage->load() ) { |
1910 | if ( merge ) ;//setModified( true ); | 1913 | if ( merge ) ;//setModified( true ); |
1911 | else { | 1914 | else { |
1912 | //setModified( true ); | 1915 | //setModified( true ); |
1913 | mViewManager->setDocumentId( filename ); | 1916 | mViewManager->setDocumentId( filename ); |
1914 | mDialogManager->setDocumentId( filename ); | 1917 | mDialogManager->setDocumentId( filename ); |
1915 | mTodoList->setDocumentId( filename ); | 1918 | mTodoList->setDocumentId( filename ); |
1916 | } | 1919 | } |
1917 | globalFlagBlockAgenda = 2; | 1920 | globalFlagBlockAgenda = 2; |
1918 | // if ( getLastSyncEvent() ) | 1921 | // if ( getLastSyncEvent() ) |
1919 | // getLastSyncEvent()->setReadOnly( true ); | 1922 | // getLastSyncEvent()->setReadOnly( true ); |
1920 | mCalendar->reInitAlarmSettings(); | 1923 | mCalendar->reInitAlarmSettings(); |
1921 | setSyncEventsReadOnly(); | 1924 | setSyncEventsReadOnly(); |
1922 | updateUnmanagedViews(); | 1925 | updateUnmanagedViews(); |
1923 | updateView(); | 1926 | updateView(); |
1924 | if ( filename != MainWindow::defaultFileName() ) { | 1927 | if ( filename != MainWindow::defaultFileName() ) { |
1925 | saveCalendar( MainWindow::defaultFileName() ); | 1928 | saveCalendar( MainWindow::defaultFileName() ); |
1926 | } else { | 1929 | } else { |
1927 | QFileInfo finf ( MainWindow::defaultFileName()); | 1930 | QFileInfo finf ( MainWindow::defaultFileName()); |
1928 | if ( finf.exists() ) { | 1931 | if ( finf.exists() ) { |
1929 | setLoadedFileVersion( finf.lastModified () ); | 1932 | setLoadedFileVersion( finf.lastModified () ); |
1930 | } | 1933 | } |
1931 | } | 1934 | } |
1932 | return true; | 1935 | return true; |
1933 | } else { | 1936 | } else { |
1934 | // while failing to load, the calendar object could | 1937 | // while failing to load, the calendar object could |
1935 | // have become partially populated. Clear it out. | 1938 | // have become partially populated. Clear it out. |
1936 | if ( !merge ) { | 1939 | if ( !merge ) { |
1937 | mCalendar->close(); | 1940 | mCalendar->close(); |
1938 | mViewManager->setDocumentId( filename ); | 1941 | mViewManager->setDocumentId( filename ); |
1939 | mDialogManager->setDocumentId( filename ); | 1942 | mDialogManager->setDocumentId( filename ); |
1940 | mTodoList->setDocumentId( filename ); | 1943 | mTodoList->setDocumentId( filename ); |
1941 | } | 1944 | } |
1942 | 1945 | ||
1943 | //KMessageBox::error(this,i18n("Couldn't load calendar\n '%1'.").arg(filename)); | 1946 | //KMessageBox::error(this,i18n("Couldn't load calendar\n '%1'.").arg(filename)); |
1944 | 1947 | ||
1945 | QTimer::singleShot ( 1, this, SLOT ( showOpenError() ) ); | 1948 | QTimer::singleShot ( 1, this, SLOT ( showOpenError() ) ); |
1946 | globalFlagBlockAgenda = 2; | 1949 | globalFlagBlockAgenda = 2; |
1947 | mCalendar->reInitAlarmSettings(); | 1950 | mCalendar->reInitAlarmSettings(); |
1948 | setSyncEventsReadOnly(); | 1951 | setSyncEventsReadOnly(); |
1949 | updateUnmanagedViews(); | 1952 | updateUnmanagedViews(); |
1950 | updateView(); | 1953 | updateView(); |
1951 | } | 1954 | } |
1952 | return false; | 1955 | return false; |
1953 | } | 1956 | } |
1954 | void CalendarView::showOpenError() | 1957 | void CalendarView::showOpenError() |
1955 | { | 1958 | { |
1956 | KMessageBox::error(this,i18n("Couldn't load calendar\n.")); | 1959 | KMessageBox::error(this,i18n("Couldn't load calendar\n.")); |
1957 | } | 1960 | } |
1958 | void CalendarView::setLoadedFileVersion(QDateTime dt) | 1961 | void CalendarView::setLoadedFileVersion(QDateTime dt) |
1959 | { | 1962 | { |
1960 | loadedFileVersion = dt; | 1963 | loadedFileVersion = dt; |
1961 | } | 1964 | } |
1962 | bool CalendarView::checkFileChanged(QString fn) | 1965 | bool CalendarView::checkFileChanged(QString fn) |
1963 | { | 1966 | { |
1964 | QFileInfo finf ( fn ); | 1967 | QFileInfo finf ( fn ); |
1965 | if ( !finf.exists() ) | 1968 | if ( !finf.exists() ) |
1966 | return true; | 1969 | return true; |
1967 | QDateTime dt = finf.lastModified (); | 1970 | QDateTime dt = finf.lastModified (); |
1968 | if ( dt <= loadedFileVersion ) | 1971 | if ( dt <= loadedFileVersion ) |
1969 | return false; | 1972 | return false; |
1970 | return true; | 1973 | return true; |
1971 | 1974 | ||
1972 | } | 1975 | } |
1973 | void CalendarView::watchSavedFile() | 1976 | void CalendarView::watchSavedFile() |
1974 | { | 1977 | { |
1975 | QFileInfo finf ( MainWindow::defaultFileName()); | 1978 | QFileInfo finf ( MainWindow::defaultFileName()); |
1976 | if ( !finf.exists() ) | 1979 | if ( !finf.exists() ) |
1977 | return; | 1980 | return; |
1978 | QDateTime dt = finf.lastModified (); | 1981 | QDateTime dt = finf.lastModified (); |
1979 | if ( dt < loadedFileVersion ) { | 1982 | if ( dt < loadedFileVersion ) { |
1980 | //qDebug("watch %s %s ", dt.toString().latin1(), loadedFileVersion.toString().latin1()); | 1983 | //qDebug("watch %s %s ", dt.toString().latin1(), loadedFileVersion.toString().latin1()); |
1981 | QTimer::singleShot( 1000 , this, SLOT ( watchSavedFile() ) ); | 1984 | QTimer::singleShot( 1000 , this, SLOT ( watchSavedFile() ) ); |
1982 | return; | 1985 | return; |
1983 | } | 1986 | } |
1984 | loadedFileVersion = dt; | 1987 | loadedFileVersion = dt; |
1985 | } | 1988 | } |
1986 | 1989 | bool CalendarView::checkAllFileVersions() | |
1990 | { | ||
1991 | QPtrList<KopiCalendarFile> calendars = KOPrefs::instance()->mCalendars; | ||
1992 | KopiCalendarFile * cal = calendars.first(); | ||
1993 | mCalendar->setDefaultCalendar( 1 ); | ||
1994 | mCalendar->setDefaultCalendarEnabledOnly(); | ||
1995 | if ( !checkFileVersion(MainWindow::defaultFileName())) | ||
1996 | return false; | ||
1997 | cal = calendars.next(); | ||
1998 | QDateTime storeTemp = loadedFileVersion; | ||
1999 | while ( cal ) { | ||
2000 | if ( !cal->mErrorOnLoad ) { | ||
2001 | mCalendar->setDefaultCalendar( cal->mCalNumber ); | ||
2002 | mCalendar->setDefaultCalendarEnabledOnly(); | ||
2003 | loadedFileVersion = cal->mLoadDt.addSecs( 15 ); | ||
2004 | if ( !checkFileVersion(cal->mFileName )) { | ||
2005 | loadedFileVersion = storeTemp; | ||
2006 | updateView(); | ||
2007 | return false; | ||
2008 | } | ||
2009 | } | ||
2010 | cal = calendars.next(); | ||
2011 | } | ||
2012 | loadedFileVersion = storeTemp; | ||
2013 | updateView(); | ||
2014 | return true; | ||
2015 | } | ||
1987 | bool CalendarView::checkFileVersion(QString fn) | 2016 | bool CalendarView::checkFileVersion(QString fn) |
1988 | { | 2017 | { |
1989 | QFileInfo finf ( fn ); | 2018 | QFileInfo finf ( fn ); |
1990 | if ( !finf.exists() ) | 2019 | if ( !finf.exists() ) |
1991 | return true; | 2020 | return true; |
1992 | QDateTime dt = finf.lastModified (); | 2021 | QDateTime dt = finf.lastModified (); |
1993 | //qDebug("loaded file version %s",loadedFileVersion.toString().latin1()); | 2022 | //qDebug("loaded file version %s",loadedFileVersion.toString().latin1()); |
1994 | //qDebug("file on disk version %s",dt.toString().latin1()); | 2023 | //qDebug("file on disk version %s",dt.toString().latin1()); |
1995 | if ( dt <= loadedFileVersion ) | 2024 | if ( dt <= loadedFileVersion ) |
1996 | return true; | 2025 | return true; |
1997 | int km = KMessageBox::warningYesNoCancel(this, i18n("\nThe file on disk has changed!\nFile size: %1 bytes.\nLast modified: %2\nDo you want to:\n\n - Save and overwrite file?\n - Sync with file, then save?\n - Cancel without saving? \n").arg( QString::number( finf.size())).arg( KGlobal::locale()->formatDateTime(finf.lastModified (), true, true)) , | 2026 | int km = KMessageBox::warningYesNoCancel(this, i18n("\nThe file\n%1\n on disk has changed!\nFile size: %2 bytes.\nLast modified: %3\nDo you want to:\n\n - Save and overwrite file?\n - Sync with file, then save?\n - Cancel without saving? \n").arg(fn).arg( QString::number( finf.size())).arg( KGlobal::locale()->formatDateTime(finf.lastModified (), true, true)) , |
1998 | i18n("KO/Pi Warning"),i18n("Overwrite"), | 2027 | i18n("KO/Pi Warning"),i18n("Overwrite"), |
1999 | i18n("Sync+save")); | 2028 | i18n("Sync+save")); |
2000 | 2029 | ||
2001 | if ( km == KMessageBox::Cancel ) | 2030 | if ( km == KMessageBox::Cancel ) |
2002 | return false; | 2031 | return false; |
2003 | if ( km == KMessageBox::Yes ) | 2032 | if ( km == KMessageBox::Yes ) |
2004 | return true; | 2033 | return true; |
2005 | 2034 | ||
2006 | setSyncDevice("deleteaftersync" ); | 2035 | setSyncDevice("deleteaftersync" ); |
2007 | mSyncManager->mAskForPreferences = true; | 2036 | mSyncManager->mAskForPreferences = true; |
2008 | mSyncManager->mSyncAlgoPrefs = 3; | 2037 | mSyncManager->mSyncAlgoPrefs = 3; |
2009 | mSyncManager->mWriteBackFile = false; | 2038 | mSyncManager->mWriteBackFile = false; |
2010 | mSyncManager->mWriteBackExistingOnly = false; | 2039 | mSyncManager->mWriteBackExistingOnly = false; |
2011 | mSyncManager->mShowSyncSummary = false; | 2040 | mSyncManager->mShowSyncSummary = false; |
2012 | syncCalendar( fn, 3 ); | 2041 | syncCalendar( fn, 3 ); |
2013 | Event * e = getLastSyncEvent(); | 2042 | Event * e = getLastSyncEvent(); |
2014 | if ( e ) | 2043 | if ( e ) |
2015 | deleteEvent ( e ); | 2044 | mCalendar->deleteEvent( e ); |
2016 | updateView(); | ||
2017 | return true; | 2045 | return true; |
2018 | } | 2046 | } |
2019 | bool CalendarView::saveCalendars() | 2047 | bool CalendarView::saveCalendars() |
2020 | { | 2048 | { |
2021 | QPtrList<KopiCalendarFile> calendars = KOPrefs::instance()->mCalendars; | 2049 | QPtrList<KopiCalendarFile> calendars = KOPrefs::instance()->mCalendars; |
2022 | KopiCalendarFile * cal = calendars.first(); | 2050 | KopiCalendarFile * cal = calendars.first(); |
2023 | mCalendar->setDefaultCalendar( 1 ); | 2051 | mCalendar->setDefaultCalendar( 1 ); |
2024 | mCalendar->setDefaultCalendarEnabledOnly(); | 2052 | mCalendar->setDefaultCalendarEnabledOnly(); |
2025 | saveCalendar( MainWindow::defaultFileName() ); | 2053 | saveCalendar( MainWindow::defaultFileName() ); |
2026 | cal = calendars.next(); | 2054 | cal = calendars.next(); |
2027 | while ( cal ) { | 2055 | while ( cal ) { |
2028 | if ( !cal->isReadOnly ) { | 2056 | if ( !cal->isReadOnly && !cal->mErrorOnLoad ) { |
2029 | mCalendar->setDefaultCalendar( cal->mCalNumber ); | 2057 | mCalendar->setDefaultCalendar( cal->mCalNumber ); |
2030 | mCalendar->setDefaultCalendarEnabledOnly(); | 2058 | mCalendar->setDefaultCalendarEnabledOnly(); |
2031 | saveCalendar( cal->mFileName ); | 2059 | if ( saveCalendar( cal->mFileName ) ) |
2060 | cal->mLoadDt = QDateTime::currentDateTime(); | ||
2032 | } | 2061 | } |
2033 | cal = calendars.next(); | 2062 | cal = calendars.next(); |
2034 | } | 2063 | } |
2035 | restoreCalendarSettings(); | 2064 | restoreCalendarSettings(); |
2036 | } | 2065 | } |
2037 | bool CalendarView::saveCalendar( QString filename ) | 2066 | bool CalendarView::saveCalendar( QString filename ) |
2038 | { | 2067 | { |
2039 | 2068 | ||
2040 | // Store back all unsaved data into calendar object | 2069 | // Store back all unsaved data into calendar object |
2041 | // qDebug("file %s %d ", filename.latin1() , mViewManager->currentView() ); | 2070 | // qDebug("file %s %d ", filename.latin1() , mViewManager->currentView() ); |
2042 | if ( mViewManager->currentView() ) | 2071 | if ( mViewManager->currentView() ) |
2043 | mViewManager->currentView()->flushView(); | 2072 | mViewManager->currentView()->flushView(); |
2044 | 2073 | ||
2045 | 2074 | ||
2046 | QDateTime lfv = QDateTime::currentDateTime().addSecs( -2); | 2075 | QDateTime lfv = QDateTime::currentDateTime().addSecs( -2); |
2047 | mStorage->setSaveFormat( new ICalFormat() ); | 2076 | mStorage->setSaveFormat( new ICalFormat() ); |
2048 | mStorage->setFileName( filename ); | 2077 | mStorage->setFileName( filename ); |
2049 | bool success; | 2078 | bool success; |
2050 | success = mStorage->save(); | 2079 | success = mStorage->save(); |
2051 | if ( !success ) { | 2080 | if ( !success ) { |
2052 | return false; | 2081 | return false; |
2053 | } | 2082 | } |
2054 | if ( filename == MainWindow::defaultFileName() ) { | 2083 | if ( filename == MainWindow::defaultFileName() ) { |
2055 | setLoadedFileVersion( lfv ); | 2084 | setLoadedFileVersion( lfv ); |
2056 | watchSavedFile(); | 2085 | watchSavedFile(); |
2057 | } | 2086 | } |
2058 | return true; | 2087 | return true; |
2059 | } | 2088 | } |
2060 | 2089 | ||
2061 | void CalendarView::closeCalendar() | 2090 | void CalendarView::closeCalendar() |
2062 | { | 2091 | { |
2063 | 2092 | ||
2064 | // child windows no longer valid | 2093 | // child windows no longer valid |
2065 | clearAllViews(); | 2094 | clearAllViews(); |
2066 | emit closingDown(); | 2095 | emit closingDown(); |
2067 | 2096 | ||
2068 | mCalendar->close(); | 2097 | mCalendar->close(); |
2069 | setModified(false); | 2098 | setModified(false); |
2070 | updateView(); | 2099 | updateView(); |
2071 | } | 2100 | } |
2072 | 2101 | ||
2073 | void CalendarView::archiveCalendar() | 2102 | void CalendarView::archiveCalendar() |
2074 | { | 2103 | { |
2075 | mDialogManager->showArchiveDialog(); | 2104 | mDialogManager->showArchiveDialog(); |
2076 | } | 2105 | } |
2077 | 2106 | ||
2078 | 2107 | ||
2079 | void CalendarView::readSettings() | 2108 | void CalendarView::readSettings() |
2080 | { | 2109 | { |
2081 | 2110 | ||
2082 | 2111 | ||
2083 | // mViewManager->showAgendaView(); | 2112 | // mViewManager->showAgendaView(); |
2084 | QString str; | 2113 | QString str; |
2085 | //qDebug("CalendarView::readSettings() "); | 2114 | //qDebug("CalendarView::readSettings() "); |
2086 | // read settings from the KConfig, supplying reasonable | 2115 | // read settings from the KConfig, supplying reasonable |
2087 | // defaults where none are to be found | 2116 | // defaults where none are to be found |
2088 | KConfig *config = KOGlobals::config(); | 2117 | KConfig *config = KOGlobals::config(); |
2089 | #ifndef KORG_NOSPLITTER | 2118 | #ifndef KORG_NOSPLITTER |
2090 | config->setGroup("KOrganizer Geometry"); | 2119 | config->setGroup("KOrganizer Geometry"); |
2091 | 2120 | ||
2092 | QValueList<int> sizes = config->readIntListEntry("Separator1"); | 2121 | QValueList<int> sizes = config->readIntListEntry("Separator1"); |
2093 | if (sizes.count() != 2) { | 2122 | if (sizes.count() != 2) { |
2094 | sizes << mDateNavigator->minimumSizeHint().width(); | 2123 | sizes << mDateNavigator->minimumSizeHint().width(); |
2095 | sizes << 300; | 2124 | sizes << 300; |
2096 | } | 2125 | } |
2097 | mPanner->setSizes(sizes); | 2126 | mPanner->setSizes(sizes); |
2098 | 2127 | ||
2099 | sizes = config->readIntListEntry("Separator2"); | 2128 | sizes = config->readIntListEntry("Separator2"); |
2100 | if ( ( mResourceView && sizes.count() == 4 ) || | 2129 | if ( ( mResourceView && sizes.count() == 4 ) || |
2101 | ( !mResourceView && sizes.count() == 3 ) ) { | 2130 | ( !mResourceView && sizes.count() == 3 ) ) { |
2102 | mLeftSplitter->setSizes(sizes); | 2131 | mLeftSplitter->setSizes(sizes); |
2103 | } | 2132 | } |
2104 | #endif | 2133 | #endif |
2105 | globalFlagBlockAgenda = 1; | 2134 | globalFlagBlockAgenda = 1; |
2106 | mViewManager->showAgendaView(); | 2135 | mViewManager->showAgendaView(); |
2107 | //mViewManager->readSettings( config ); | 2136 | //mViewManager->readSettings( config ); |
2108 | mTodoList->restoreLayout(config,QString("Todo Layout")); | 2137 | mTodoList->restoreLayout(config,QString("Todo Layout")); |
2109 | readFilterSettings(config); | 2138 | readFilterSettings(config); |
2110 | 2139 | ||
2111 | #ifdef DESKTOP_VERSION | 2140 | #ifdef DESKTOP_VERSION |
2112 | config->setGroup("WidgetLayout"); | 2141 | config->setGroup("WidgetLayout"); |
2113 | QStringList list; | 2142 | QStringList list; |
2114 | list = config->readListEntry("MainLayout"); | 2143 | list = config->readListEntry("MainLayout"); |
2115 | int x,y,w,h; | 2144 | int x,y,w,h; |
2116 | if ( ! list.isEmpty() ) { | 2145 | if ( ! list.isEmpty() ) { |
2117 | x = list[0].toInt(); | 2146 | x = list[0].toInt(); |
2118 | y = list[1].toInt(); | 2147 | y = list[1].toInt(); |
2119 | w = list[2].toInt(); | 2148 | w = list[2].toInt(); |
2120 | h = list[3].toInt(); | 2149 | h = list[3].toInt(); |
2121 | KApplication::testCoords( &x,&y,&w,&h ); | 2150 | KApplication::testCoords( &x,&y,&w,&h ); |
2122 | topLevelWidget()->setGeometry(x,y,w,h); | 2151 | topLevelWidget()->setGeometry(x,y,w,h); |
2123 | 2152 | ||
2124 | } else { | 2153 | } else { |
2125 | topLevelWidget()->setGeometry( 40 ,40 , 640, 440); | 2154 | topLevelWidget()->setGeometry( 40 ,40 , 640, 440); |
2126 | } | 2155 | } |
2127 | list = config->readListEntry("EditEventLayout"); | 2156 | list = config->readListEntry("EditEventLayout"); |
2128 | if ( ! list.isEmpty() ) { | 2157 | if ( ! list.isEmpty() ) { |
2129 | x = list[0].toInt(); | 2158 | x = list[0].toInt(); |
2130 | y = list[1].toInt(); | 2159 | y = list[1].toInt(); |
2131 | w = list[2].toInt(); | 2160 | w = list[2].toInt(); |
2132 | h = list[3].toInt(); | 2161 | h = list[3].toInt(); |
2133 | KApplication::testCoords( &x,&y,&w,&h ); | 2162 | KApplication::testCoords( &x,&y,&w,&h ); |
2134 | mEventEditor->setGeometry(x,y,w,h); | 2163 | mEventEditor->setGeometry(x,y,w,h); |
2135 | 2164 | ||
2136 | } | 2165 | } |
2137 | list = config->readListEntry("EditTodoLayout"); | 2166 | list = config->readListEntry("EditTodoLayout"); |
2138 | if ( ! list.isEmpty() ) { | 2167 | if ( ! list.isEmpty() ) { |
2139 | x = list[0].toInt(); | 2168 | x = list[0].toInt(); |
2140 | y = list[1].toInt(); | 2169 | y = list[1].toInt(); |
2141 | w = list[2].toInt(); | 2170 | w = list[2].toInt(); |
2142 | h = list[3].toInt(); | 2171 | h = list[3].toInt(); |
2143 | KApplication::testCoords( &x,&y,&w,&h ); | 2172 | KApplication::testCoords( &x,&y,&w,&h ); |
2144 | mTodoEditor->setGeometry(x,y,w,h); | 2173 | mTodoEditor->setGeometry(x,y,w,h); |
2145 | 2174 | ||
2146 | } | 2175 | } |
2147 | list = config->readListEntry("ViewerLayout"); | 2176 | list = config->readListEntry("ViewerLayout"); |
2148 | if ( ! list.isEmpty() ) { | 2177 | if ( ! list.isEmpty() ) { |
2149 | x = list[0].toInt(); | 2178 | x = list[0].toInt(); |
2150 | y = list[1].toInt(); | 2179 | y = list[1].toInt(); |
2151 | w = list[2].toInt(); | 2180 | w = list[2].toInt(); |
2152 | h = list[3].toInt(); | 2181 | h = list[3].toInt(); |
2153 | KApplication::testCoords( &x,&y,&w,&h ); | 2182 | KApplication::testCoords( &x,&y,&w,&h ); |
2154 | getEventViewerDialog()->setGeometry(x,y,w,h); | 2183 | getEventViewerDialog()->setGeometry(x,y,w,h); |
2155 | } | 2184 | } |
2156 | #endif | 2185 | #endif |
2157 | config->setGroup( "Views" ); | 2186 | config->setGroup( "Views" ); |
2158 | int dateCount = config->readNumEntry( "ShownDatesCount", 7 ); | 2187 | int dateCount = config->readNumEntry( "ShownDatesCount", 7 ); |
2159 | 2188 | ||
2160 | QValueList<int> sizes = config->readIntListEntry("Left Splitter Frame"); | 2189 | QValueList<int> sizes = config->readIntListEntry("Left Splitter Frame"); |
2161 | 2190 | ||
2162 | int resetval = 0; | 2191 | int resetval = 0; |
2163 | int maxVal = 0; | 2192 | int maxVal = 0; |
2164 | if (sizes.count() != 3) { | 2193 | if (sizes.count() != 3) { |
2165 | if ( KOPrefs::instance()->mVerticalScreen ) { | 2194 | if ( KOPrefs::instance()->mVerticalScreen ) { |
2166 | resetval = mDateNavigator->sizeHint().width()+2; | 2195 | resetval = mDateNavigator->sizeHint().width()+2; |
2167 | } else { | 2196 | } else { |
2168 | resetval = mDateNavigator->sizeHint().height()+2; | 2197 | resetval = mDateNavigator->sizeHint().height()+2; |
2169 | } | 2198 | } |
2170 | } | 2199 | } |
2171 | if ( resetval ) { | 2200 | if ( resetval ) { |
2172 | sizes.clear(); | 2201 | sizes.clear(); |
2173 | if ( KOPrefs::instance()->mVerticalScreen ) { | 2202 | if ( KOPrefs::instance()->mVerticalScreen ) { |
2174 | maxVal = QApplication::desktop()->width() -10; | 2203 | maxVal = QApplication::desktop()->width() -10; |
2175 | } else { | 2204 | } else { |
2176 | maxVal = QApplication::desktop()->height()-10; | 2205 | maxVal = QApplication::desktop()->height()-10; |
2177 | } | 2206 | } |
2178 | sizes << resetval; | 2207 | sizes << resetval; |
2179 | if ( maxVal < resetval + resetval) | 2208 | if ( maxVal < resetval + resetval) |
2180 | resetval = maxVal - resetval; | 2209 | resetval = maxVal - resetval; |
2181 | sizes << resetval; | 2210 | sizes << resetval; |
2182 | sizes << 100; | 2211 | sizes << 100; |
2183 | } | 2212 | } |
2184 | mLeftFrame->setSizes(sizes); | 2213 | mLeftFrame->setSizes(sizes); |
2185 | sizes = config->readIntListEntry("Main Splitter Frame"); | 2214 | sizes = config->readIntListEntry("Main Splitter Frame"); |
2186 | resetval = 0; | 2215 | resetval = 0; |
2187 | maxVal = 0; | 2216 | maxVal = 0; |
2188 | if (sizes.count() != 2) { | 2217 | if (sizes.count() != 2) { |
2189 | if ( !KOPrefs::instance()->mVerticalScreen ) { | 2218 | if ( !KOPrefs::instance()->mVerticalScreen ) { |
2190 | resetval = mDateNavigator->sizeHint().width()+2; | 2219 | resetval = mDateNavigator->sizeHint().width()+2; |
2191 | } else { | 2220 | } else { |
2192 | resetval = mDateNavigator->sizeHint().height()+2; | 2221 | resetval = mDateNavigator->sizeHint().height()+2; |
2193 | } | 2222 | } |
2194 | } | 2223 | } |
2195 | if ( resetval ) { | 2224 | if ( resetval ) { |
2196 | sizes.clear(); | 2225 | sizes.clear(); |
2197 | if ( !KOPrefs::instance()->mVerticalScreen ) { | 2226 | if ( !KOPrefs::instance()->mVerticalScreen ) { |
2198 | maxVal = QApplication::desktop()->width() -10; | 2227 | maxVal = QApplication::desktop()->width() -10; |
2199 | } else { | 2228 | } else { |
2200 | maxVal = QApplication::desktop()->height()-10; | 2229 | maxVal = QApplication::desktop()->height()-10; |
2201 | } | 2230 | } |
2202 | sizes << resetval; | 2231 | sizes << resetval; |
2203 | if ( maxVal < resetval + resetval) | 2232 | if ( maxVal < resetval + resetval) |
2204 | resetval = maxVal - resetval; | 2233 | resetval = maxVal - resetval; |
2205 | sizes << resetval; | 2234 | sizes << resetval; |
2206 | } | 2235 | } |
2207 | mMainFrame->setSizes(sizes); | 2236 | mMainFrame->setSizes(sizes); |
2208 | if ( dateCount == 5 ) mNavigator->selectWorkWeek(); | 2237 | if ( dateCount == 5 ) mNavigator->selectWorkWeek(); |
2209 | else if ( dateCount == 7 ) mNavigator->selectWeek(); | 2238 | else if ( dateCount == 7 ) mNavigator->selectWeek(); |
2210 | else mNavigator->selectDates( dateCount ); | 2239 | else mNavigator->selectDates( dateCount ); |
2211 | // mViewManager->readSettings( config ); | 2240 | // mViewManager->readSettings( config ); |
2212 | updateConfig(); | 2241 | updateConfig(); |
2213 | globalFlagBlockAgenda = 2; | 2242 | globalFlagBlockAgenda = 2; |
2214 | mViewManager->readSettings( config ); | 2243 | mViewManager->readSettings( config ); |
2215 | QTimer::singleShot( 1, mDateNavigator, SLOT ( setResizeEnabled() ) ); | 2244 | QTimer::singleShot( 1, mDateNavigator, SLOT ( setResizeEnabled() ) ); |
2216 | } | 2245 | } |
2217 | 2246 | ||
2218 | 2247 | ||
2219 | void CalendarView::writeSettings() | 2248 | void CalendarView::writeSettings() |
2220 | { | 2249 | { |
2221 | // kdDebug() << "CalendarView::writeSettings" << endl; | 2250 | // kdDebug() << "CalendarView::writeSettings" << endl; |
2222 | 2251 | ||
2223 | KConfig *config = KOGlobals::config(); | 2252 | KConfig *config = KOGlobals::config(); |
2224 | 2253 | ||
2225 | mViewManager->writeSettings( config ); | 2254 | mViewManager->writeSettings( config ); |
2226 | mTodoList->saveLayout(config,QString("Todo Layout")); | 2255 | mTodoList->saveLayout(config,QString("Todo Layout")); |
2227 | mDialogManager->writeSettings( config ); | 2256 | mDialogManager->writeSettings( config ); |
2228 | //KOPrefs::instance()->usrWriteConfig(); | 2257 | //KOPrefs::instance()->usrWriteConfig(); |
2229 | KOPrefs::instance()->writeConfig(); | 2258 | KOPrefs::instance()->writeConfig(); |
2230 | 2259 | ||
2231 | writeFilterSettings(config); | 2260 | writeFilterSettings(config); |
2232 | config->setGroup( "AppRun" ); | 2261 | config->setGroup( "AppRun" ); |
2233 | QDateTime dt ( QDate (2005,1,1), QTime( 0,0,0 ) ); | 2262 | QDateTime dt ( QDate (2005,1,1), QTime( 0,0,0 ) ); |
2234 | int days = dt.daysTo( QDate::currentDate() ); | 2263 | int days = dt.daysTo( QDate::currentDate() ); |
2235 | dt = dt.addDays( days ); | 2264 | dt = dt.addDays( days ); |
2236 | int secs = dt.secsTo( QDateTime::currentDateTime() ); | 2265 | int secs = dt.secsTo( QDateTime::currentDateTime() ); |
2237 | config->writeEntry( "LatestProgramStopDays", days ); | 2266 | config->writeEntry( "LatestProgramStopDays", days ); |
2238 | config->writeEntry( "LatestProgramStopSecs", secs ); | 2267 | config->writeEntry( "LatestProgramStopSecs", secs ); |
2239 | //qDebug("KO: Writing stop time: %d ", secs); | 2268 | //qDebug("KO: Writing stop time: %d ", secs); |
2240 | //qDebug("KO: Current Time %s ",QDateTime::currentDateTime().toString().latin1() ); | 2269 | //qDebug("KO: Current Time %s ",QDateTime::currentDateTime().toString().latin1() ); |
2241 | //QDateTime latest = dt.addSecs ( secs ); | 2270 | //QDateTime latest = dt.addSecs ( secs ); |
2242 | //qDebug("KO: Termination on %s ", latest.toString().latin1()); | 2271 | //qDebug("KO: Termination on %s ", latest.toString().latin1()); |
2243 | config->setGroup( "Views" ); | 2272 | config->setGroup( "Views" ); |
2244 | config->writeEntry( "ShownDatesCount", mNavigator->selectedDates().count() ); | 2273 | config->writeEntry( "ShownDatesCount", mNavigator->selectedDates().count() ); |
2245 | 2274 | ||
2246 | #if 0 | 2275 | #if 0 |
2247 | qDebug("********************* "); | 2276 | qDebug("********************* "); |
2248 | qDebug("Testcode secsto "); | 2277 | qDebug("Testcode secsto "); |
2249 | QDateTime dt_nodaylight ( QDate (2005,3,26), QTime( 0,0,0 ) ); | 2278 | QDateTime dt_nodaylight ( QDate (2005,3,26), QTime( 0,0,0 ) ); |
2250 | QDateTime dt_daylight ( QDate (2005,3,29), QTime( 0,0,0 ) ); | 2279 | QDateTime dt_daylight ( QDate (2005,3,29), QTime( 0,0,0 ) ); |
2251 | int secsto = dt_nodaylight.secsTo( dt_daylight ); | 2280 | int secsto = dt_nodaylight.secsTo( dt_daylight ); |
2252 | QDateTime dt_daylight_wrong = dt_nodaylight.addSecs( secsto ); | 2281 | QDateTime dt_daylight_wrong = dt_nodaylight.addSecs( secsto ); |
2253 | qDebug("dt nodaylight %s ",dt_nodaylight.toString().latin1() ); | 2282 | qDebug("dt nodaylight %s ",dt_nodaylight.toString().latin1() ); |
2254 | qDebug("dt daylight %s ",dt_daylight.toString().latin1() ); | 2283 | qDebug("dt daylight %s ",dt_daylight.toString().latin1() ); |
2255 | qDebug("dt daylight_wrong %s ",dt_daylight_wrong.toString().latin1() ); | 2284 | qDebug("dt daylight_wrong %s ",dt_daylight_wrong.toString().latin1() ); |
2256 | qDebug("Computed secsTo %d . in minutes: %d . in hours: %d ", secsto, secsto/60, secsto/3600); | 2285 | qDebug("Computed secsTo %d . in minutes: %d . in hours: %d ", secsto, secsto/60, secsto/3600); |
2257 | qDebug("********************* testcode end"); | 2286 | qDebug("********************* testcode end"); |
2258 | 2287 | ||
2259 | #endif | 2288 | #endif |
2260 | 2289 | ||
2261 | QValueList<int> listINT = mLeftFrame->sizes(); | 2290 | QValueList<int> listINT = mLeftFrame->sizes(); |
2262 | config->writeEntry("Left Splitter Frame",listINT); | 2291 | config->writeEntry("Left Splitter Frame",listINT); |
2263 | QValueList<int> listINT2 = mMainFrame->sizes(); | 2292 | QValueList<int> listINT2 = mMainFrame->sizes(); |
2264 | config->writeEntry("Main Splitter Frame",listINT2); | 2293 | config->writeEntry("Main Splitter Frame",listINT2); |
2265 | #ifdef DESKTOP_VERSION | 2294 | #ifdef DESKTOP_VERSION |
2266 | config->setGroup("WidgetLayout"); | 2295 | config->setGroup("WidgetLayout"); |
2267 | QStringList list ;//= config->readListEntry("MainLayout"); | 2296 | QStringList list ;//= config->readListEntry("MainLayout"); |
2268 | int x,y,w,h; | 2297 | int x,y,w,h; |
2269 | QWidget* wid; | 2298 | QWidget* wid; |
2270 | wid = topLevelWidget(); | 2299 | wid = topLevelWidget(); |
2271 | x = wid->geometry().x(); | 2300 | x = wid->geometry().x(); |
2272 | y = wid->geometry().y(); | 2301 | y = wid->geometry().y(); |
2273 | w = wid->width(); | 2302 | w = wid->width(); |
2274 | h = wid->height(); | 2303 | h = wid->height(); |
2275 | list.clear(); | 2304 | list.clear(); |
2276 | list << QString::number( x ); | 2305 | list << QString::number( x ); |
2277 | list << QString::number( y ); | 2306 | list << QString::number( y ); |
2278 | list << QString::number( w ); | 2307 | list << QString::number( w ); |
2279 | list << QString::number( h ); | 2308 | list << QString::number( h ); |
2280 | config->writeEntry("MainLayout",list ); | 2309 | config->writeEntry("MainLayout",list ); |
2281 | 2310 | ||
2282 | wid = mEventEditor; | 2311 | wid = mEventEditor; |
2283 | x = wid->geometry().x(); | 2312 | x = wid->geometry().x(); |
2284 | y = wid->geometry().y(); | 2313 | y = wid->geometry().y(); |
2285 | w = wid->width(); | 2314 | w = wid->width(); |
2286 | h = wid->height(); | 2315 | h = wid->height(); |
2287 | list.clear(); | 2316 | list.clear(); |
2288 | list << QString::number( x ); | 2317 | list << QString::number( x ); |
2289 | list << QString::number( y ); | 2318 | list << QString::number( y ); |
2290 | list << QString::number( w ); | 2319 | list << QString::number( w ); |
2291 | list << QString::number( h ); | 2320 | list << QString::number( h ); |
2292 | config->writeEntry("EditEventLayout",list ); | 2321 | config->writeEntry("EditEventLayout",list ); |
2293 | 2322 | ||
2294 | wid = mTodoEditor; | 2323 | wid = mTodoEditor; |
2295 | x = wid->geometry().x(); | 2324 | x = wid->geometry().x(); |
2296 | y = wid->geometry().y(); | 2325 | y = wid->geometry().y(); |
2297 | w = wid->width(); | 2326 | w = wid->width(); |
2298 | h = wid->height(); | 2327 | h = wid->height(); |
2299 | list.clear(); | 2328 | list.clear(); |
2300 | list << QString::number( x ); | 2329 | list << QString::number( x ); |
2301 | list << QString::number( y ); | 2330 | list << QString::number( y ); |
2302 | list << QString::number( w ); | 2331 | list << QString::number( w ); |
2303 | list << QString::number( h ); | 2332 | list << QString::number( h ); |
2304 | config->writeEntry("EditTodoLayout",list ); | 2333 | config->writeEntry("EditTodoLayout",list ); |
2305 | wid = getEventViewerDialog(); | 2334 | wid = getEventViewerDialog(); |
2306 | x = wid->geometry().x(); | 2335 | x = wid->geometry().x(); |
2307 | y = wid->geometry().y(); | 2336 | y = wid->geometry().y(); |
2308 | w = wid->width(); | 2337 | w = wid->width(); |
2309 | h = wid->height(); | 2338 | h = wid->height(); |
2310 | list.clear(); | 2339 | list.clear(); |
2311 | list << QString::number( x ); | 2340 | list << QString::number( x ); |
2312 | list << QString::number( y ); | 2341 | list << QString::number( y ); |
2313 | list << QString::number( w ); | 2342 | list << QString::number( w ); |
2314 | list << QString::number( h ); | 2343 | list << QString::number( h ); |
2315 | config->writeEntry("ViewerLayout",list ); | 2344 | config->writeEntry("ViewerLayout",list ); |
2316 | wid = mDialogManager->getSearchDialog(); | 2345 | wid = mDialogManager->getSearchDialog(); |
2317 | if ( wid ) { | 2346 | if ( wid ) { |
2318 | x = wid->geometry().x(); | 2347 | x = wid->geometry().x(); |
2319 | y = wid->geometry().y(); | 2348 | y = wid->geometry().y(); |
2320 | w = wid->width(); | 2349 | w = wid->width(); |
2321 | h = wid->height(); | 2350 | h = wid->height(); |
2322 | list.clear(); | 2351 | list.clear(); |
2323 | list << QString::number( x ); | 2352 | list << QString::number( x ); |
2324 | list << QString::number( y ); | 2353 | list << QString::number( y ); |
2325 | list << QString::number( w ); | 2354 | list << QString::number( w ); |
2326 | list << QString::number( h ); | 2355 | list << QString::number( h ); |
2327 | config->writeEntry("SearchLayout",list ); | 2356 | config->writeEntry("SearchLayout",list ); |
2328 | } | 2357 | } |
2329 | #endif | 2358 | #endif |
2330 | 2359 | ||
2331 | 2360 | ||
2332 | config->sync(); | 2361 | config->sync(); |
2333 | } | 2362 | } |
2334 | 2363 | ||
2335 | void CalendarView::readFilterSettings(KConfig *config) | 2364 | void CalendarView::readFilterSettings(KConfig *config) |
2336 | { | 2365 | { |
2337 | // kdDebug() << "CalendarView::readFilterSettings()" << endl; | 2366 | // kdDebug() << "CalendarView::readFilterSettings()" << endl; |
2338 | 2367 | ||
2339 | mFilters.clear(); | 2368 | mFilters.clear(); |
2340 | 2369 | ||
2341 | config->setGroup("General"); | 2370 | config->setGroup("General"); |
2342 | QStringList filterList = config->readListEntry("CalendarFilters"); | 2371 | QStringList filterList = config->readListEntry("CalendarFilters"); |
2343 | 2372 | ||
2344 | QStringList::ConstIterator it = filterList.begin(); | 2373 | QStringList::ConstIterator it = filterList.begin(); |
2345 | QStringList::ConstIterator end = filterList.end(); | 2374 | QStringList::ConstIterator end = filterList.end(); |
2346 | while(it != end) { | 2375 | while(it != end) { |
2347 | // kdDebug() << " filter: " << (*it) << endl; | 2376 | // kdDebug() << " filter: " << (*it) << endl; |
2348 | 2377 | ||
2349 | CalFilter *filter; | 2378 | CalFilter *filter; |
2350 | filter = new CalFilter(*it); | 2379 | filter = new CalFilter(*it); |
2351 | config->setGroup("Filter_" + (*it).utf8()); | 2380 | config->setGroup("Filter_" + (*it).utf8()); |
2352 | //qDebug("readFilterSettings %d ",config->readNumEntry("Criteria",0) ); | 2381 | //qDebug("readFilterSettings %d ",config->readNumEntry("Criteria",0) ); |
2353 | filter->setCriteria(config->readNumEntry("Criteria",0)); | 2382 | filter->setCriteria(config->readNumEntry("Criteria",0)); |
2354 | filter->setCategoryList(config->readListEntry("CategoryList")); | 2383 | filter->setCategoryList(config->readListEntry("CategoryList")); |
2355 | mFilters.append(filter); | 2384 | mFilters.append(filter); |
2356 | 2385 | ||
2357 | ++it; | 2386 | ++it; |
2358 | } | 2387 | } |
2359 | 2388 | ||
2360 | if (mFilters.count() == 0) { | 2389 | if (mFilters.count() == 0) { |
2361 | CalFilter *filter = new CalFilter(i18n("Default")); | 2390 | CalFilter *filter = new CalFilter(i18n("Default")); |
2362 | mFilters.append(filter); | 2391 | mFilters.append(filter); |
2363 | } | 2392 | } |
2364 | mFilterView->updateFilters(); | 2393 | mFilterView->updateFilters(); |
2365 | config->setGroup("FilterView"); | 2394 | config->setGroup("FilterView"); |
2366 | 2395 | ||
2367 | mFilterView->blockSignals(true); | 2396 | mFilterView->blockSignals(true); |
2368 | mFilterView->setFiltersEnabled(config->readBoolEntry("FilterEnabled")); | 2397 | mFilterView->setFiltersEnabled(config->readBoolEntry("FilterEnabled")); |
2369 | mFilterView->setSelectedFilter(config->readEntry("Current Filter")); | 2398 | mFilterView->setSelectedFilter(config->readEntry("Current Filter")); |
2370 | mFilterView->blockSignals(false); | 2399 | mFilterView->blockSignals(false); |
2371 | // We do it manually to avoid it being done twice by the above calls | 2400 | // We do it manually to avoid it being done twice by the above calls |
2372 | updateFilter(); | 2401 | updateFilter(); |
2373 | } | 2402 | } |
2374 | 2403 | ||
2375 | void CalendarView::writeFilterSettings(KConfig *config) | 2404 | void CalendarView::writeFilterSettings(KConfig *config) |
2376 | { | 2405 | { |
2377 | // kdDebug() << "CalendarView::writeFilterSettings()" << endl; | 2406 | // kdDebug() << "CalendarView::writeFilterSettings()" << endl; |
2378 | 2407 | ||
2379 | QStringList filterList; | 2408 | QStringList filterList; |
2380 | 2409 | ||
2381 | CalFilter *filter = mFilters.first(); | 2410 | CalFilter *filter = mFilters.first(); |
2382 | while(filter) { | 2411 | while(filter) { |
2383 | // kdDebug() << " fn: " << filter->name() << endl; | 2412 | // kdDebug() << " fn: " << filter->name() << endl; |
2384 | filterList << filter->name(); | 2413 | filterList << filter->name(); |
2385 | config->setGroup("Filter_" + filter->name().utf8()); | 2414 | config->setGroup("Filter_" + filter->name().utf8()); |
2386 | config->writeEntry("Criteria",filter->criteria()); | 2415 | config->writeEntry("Criteria",filter->criteria()); |
2387 | config->writeEntry("CategoryList",filter->categoryList()); | 2416 | config->writeEntry("CategoryList",filter->categoryList()); |
2388 | filter = mFilters.next(); | 2417 | filter = mFilters.next(); |
2389 | } | 2418 | } |
2390 | config->setGroup("General"); | 2419 | config->setGroup("General"); |
2391 | config->writeEntry("CalendarFilters",filterList); | 2420 | config->writeEntry("CalendarFilters",filterList); |
2392 | 2421 | ||
2393 | config->setGroup("FilterView"); | 2422 | config->setGroup("FilterView"); |
2394 | config->writeEntry("FilterEnabled",mFilterView->filtersEnabled()); | 2423 | config->writeEntry("FilterEnabled",mFilterView->filtersEnabled()); |
2395 | config->writeEntry("Current Filter",mFilterView->selectedFilter()->name()); | 2424 | config->writeEntry("Current Filter",mFilterView->selectedFilter()->name()); |
2396 | } | 2425 | } |
2397 | 2426 | ||
2398 | 2427 | ||
2399 | void CalendarView::goToday() | 2428 | void CalendarView::goToday() |
2400 | { | 2429 | { |
2401 | if ( mViewManager->currentView()->isMonthView() ) | 2430 | if ( mViewManager->currentView()->isMonthView() ) |
2402 | mNavigator->selectTodayMonth(); | 2431 | mNavigator->selectTodayMonth(); |
2403 | else | 2432 | else |
2404 | mNavigator->selectToday(); | 2433 | mNavigator->selectToday(); |
2405 | } | 2434 | } |
2406 | 2435 | ||
2407 | void CalendarView::goNext() | 2436 | void CalendarView::goNext() |
2408 | { | 2437 | { |
2409 | mNavigator->selectNext(); | 2438 | mNavigator->selectNext(); |
2410 | } | 2439 | } |
2411 | 2440 | ||
2412 | void CalendarView::goPrevious() | 2441 | void CalendarView::goPrevious() |
2413 | { | 2442 | { |
2414 | mNavigator->selectPrevious(); | 2443 | mNavigator->selectPrevious(); |
2415 | } | 2444 | } |
diff --git a/korganizer/calendarview.h b/korganizer/calendarview.h index ec5b7ab..d836fee 100644 --- a/korganizer/calendarview.h +++ b/korganizer/calendarview.h | |||
@@ -129,523 +129,524 @@ class CalendarView : public KOrg::CalendarViewBase, public KCal::Calendar::Obser | |||
129 | QWidgetStack *viewStack(); | 129 | QWidgetStack *viewStack(); |
130 | QWidget *leftFrame(); | 130 | QWidget *leftFrame(); |
131 | 131 | ||
132 | DateNavigator *dateNavigator(); | 132 | DateNavigator *dateNavigator(); |
133 | KDateNavigator *dateNavigatorWidget(); | 133 | KDateNavigator *dateNavigatorWidget(); |
134 | 134 | ||
135 | void addView(KOrg::BaseView *); | 135 | void addView(KOrg::BaseView *); |
136 | void showView(KOrg::BaseView *); | 136 | void showView(KOrg::BaseView *); |
137 | KOEventViewerDialog* getEventViewerDialog(); | 137 | KOEventViewerDialog* getEventViewerDialog(); |
138 | Incidence *currentSelection(); | 138 | Incidence *currentSelection(); |
139 | 139 | ||
140 | signals: | 140 | signals: |
141 | void save (); | 141 | void save (); |
142 | void saveStopTimer (); | 142 | void saveStopTimer (); |
143 | void tempDisableBR(bool); | 143 | void tempDisableBR(bool); |
144 | /** This todo has been modified */ | 144 | /** This todo has been modified */ |
145 | void todoModified(Todo *, int); | 145 | void todoModified(Todo *, int); |
146 | 146 | ||
147 | /** when change is made to options dialog, the topwidget will catch this | 147 | /** when change is made to options dialog, the topwidget will catch this |
148 | * and emit this signal which notifies all widgets which have registered | 148 | * and emit this signal which notifies all widgets which have registered |
149 | * for notification to update their settings. */ | 149 | * for notification to update their settings. */ |
150 | void configChanged(); | 150 | void configChanged(); |
151 | /** emitted when the topwidget is closing down, so that any attached | 151 | /** emitted when the topwidget is closing down, so that any attached |
152 | child windows can also close. */ | 152 | child windows can also close. */ |
153 | void closingDown(); | 153 | void closingDown(); |
154 | /** emitted right before we die */ | 154 | /** emitted right before we die */ |
155 | void closed(QWidget *); | 155 | void closed(QWidget *); |
156 | 156 | ||
157 | /** Emitted when state of modified flag changes */ | 157 | /** Emitted when state of modified flag changes */ |
158 | void modifiedChanged(bool); | 158 | void modifiedChanged(bool); |
159 | void signalmodified(); | 159 | void signalmodified(); |
160 | 160 | ||
161 | /** Emitted when state of read-only flag changes */ | 161 | /** Emitted when state of read-only flag changes */ |
162 | void readOnlyChanged(bool); | 162 | void readOnlyChanged(bool); |
163 | 163 | ||
164 | /** Emitted when the unit of navigation changes */ | 164 | /** Emitted when the unit of navigation changes */ |
165 | void changeNavStringPrev(const QString &); | 165 | void changeNavStringPrev(const QString &); |
166 | void changeNavStringNext(const QString &); | 166 | void changeNavStringNext(const QString &); |
167 | 167 | ||
168 | /** Emitted when state of events selection has changed and user is organizer*/ | 168 | /** Emitted when state of events selection has changed and user is organizer*/ |
169 | void organizerEventsSelected(bool); | 169 | void organizerEventsSelected(bool); |
170 | /** Emitted when state of events selection has changed and user is attendee*/ | 170 | /** Emitted when state of events selection has changed and user is attendee*/ |
171 | void groupEventsSelected(bool); | 171 | void groupEventsSelected(bool); |
172 | /** | 172 | /** |
173 | Emitted when an incidence gets selected. If the selection is cleared the | 173 | Emitted when an incidence gets selected. If the selection is cleared the |
174 | signal is emitted with 0 as argument. | 174 | signal is emitted with 0 as argument. |
175 | */ | 175 | */ |
176 | void incidenceSelected( Incidence * ); | 176 | void incidenceSelected( Incidence * ); |
177 | /** Emitted, when a todoitem is selected or deselected. */ | 177 | /** Emitted, when a todoitem is selected or deselected. */ |
178 | void todoSelected( bool ); | 178 | void todoSelected( bool ); |
179 | 179 | ||
180 | /** | 180 | /** |
181 | Emitted, when clipboard content changes. Parameter indicates if paste | 181 | Emitted, when clipboard content changes. Parameter indicates if paste |
182 | is possible or not. | 182 | is possible or not. |
183 | */ | 183 | */ |
184 | void pasteEnabled(bool); | 184 | void pasteEnabled(bool); |
185 | 185 | ||
186 | /** Emitted, when the number of incoming messages has changed. */ | 186 | /** Emitted, when the number of incoming messages has changed. */ |
187 | void numIncomingChanged(int); | 187 | void numIncomingChanged(int); |
188 | 188 | ||
189 | /** Emitted, when the number of outgoing messages has changed. */ | 189 | /** Emitted, when the number of outgoing messages has changed. */ |
190 | void numOutgoingChanged(int); | 190 | void numOutgoingChanged(int); |
191 | 191 | ||
192 | /** Send status message, which can e.g. be displayed in the status bar. */ | 192 | /** Send status message, which can e.g. be displayed in the status bar. */ |
193 | void statusMessage(const QString &); | 193 | void statusMessage(const QString &); |
194 | 194 | ||
195 | void calendarViewExpanded( bool ); | 195 | void calendarViewExpanded( bool ); |
196 | void updateSearchDialog(); | 196 | void updateSearchDialog(); |
197 | 197 | ||
198 | 198 | ||
199 | public slots: | 199 | public slots: |
200 | void checkAlarms(); | 200 | void checkAlarms(); |
201 | void slotprintSelInc(); | 201 | void slotprintSelInc(); |
202 | void showNextAlarms(); | 202 | void showNextAlarms(); |
203 | void showOpenError(); | 203 | void showOpenError(); |
204 | void watchSavedFile(); | 204 | void watchSavedFile(); |
205 | void recheckTimerAlarm(); | 205 | void recheckTimerAlarm(); |
206 | void checkNextTimerAlarm(); | 206 | void checkNextTimerAlarm(); |
207 | void addAlarm(const QDateTime &qdt, const QString ¬i ); | 207 | void addAlarm(const QDateTime &qdt, const QString ¬i ); |
208 | void addSuspendAlarm(const QDateTime &qdt, const QString ¬i ); | 208 | void addSuspendAlarm(const QDateTime &qdt, const QString ¬i ); |
209 | void removeAlarm(const QDateTime &qdt, const QString ¬i ); | 209 | void removeAlarm(const QDateTime &qdt, const QString ¬i ); |
210 | 210 | ||
211 | /** options dialog made a changed to the configuration. we catch this | 211 | /** options dialog made a changed to the configuration. we catch this |
212 | * and notify all widgets which need to update their configuration. */ | 212 | * and notify all widgets which need to update their configuration. */ |
213 | void updateConfig(); | 213 | void updateConfig(); |
214 | 214 | ||
215 | void insertBirthdays(const QString& uid, const QStringList& birthdayList, | 215 | void insertBirthdays(const QString& uid, const QStringList& birthdayList, |
216 | const QStringList& anniversaryList, const QStringList& realNameList, | 216 | const QStringList& anniversaryList, const QStringList& realNameList, |
217 | const QStringList& emailList, const QStringList& assembledNameList, | 217 | const QStringList& emailList, const QStringList& assembledNameList, |
218 | const QStringList& uidList); | 218 | const QStringList& uidList); |
219 | 219 | ||
220 | /** | 220 | /** |
221 | Load calendar from file \a filename. If \a merge is true, load | 221 | Load calendar from file \a filename. If \a merge is true, load |
222 | calendar into existing one, if it is false, clear calendar, before | 222 | calendar into existing one, if it is false, clear calendar, before |
223 | loading. Return true, if calendar could be successfully loaded. | 223 | loading. Return true, if calendar could be successfully loaded. |
224 | */ | 224 | */ |
225 | bool openCalendar(QString filename, bool merge=false); | 225 | bool openCalendar(QString filename, bool merge=false); |
226 | bool loadCalendars(); | 226 | bool loadCalendars(); |
227 | bool saveCalendars(); | 227 | bool saveCalendars(); |
228 | bool restoreCalendarSettings(); | 228 | bool restoreCalendarSettings(); |
229 | bool addCalendar( KopiCalendarFile * ); | 229 | bool addCalendar( KopiCalendarFile * ); |
230 | void addCalendarId( int id ); | 230 | void addCalendarId( int id ); |
231 | bool syncCalendar(QString filename,int mode = 0 ); | 231 | bool syncCalendar(QString filename,int mode = 0 ); |
232 | 232 | ||
233 | /** | 233 | /** |
234 | Save calendar data to file. Return true if calendar could be | 234 | Save calendar data to file. Return true if calendar could be |
235 | successfully saved. | 235 | successfully saved. |
236 | */ | 236 | */ |
237 | bool saveCalendar(QString filename); | 237 | bool saveCalendar(QString filename); |
238 | 238 | ||
239 | /** | 239 | /** |
240 | Close calendar. Clear calendar data and reset views to display an empty | 240 | Close calendar. Clear calendar data and reset views to display an empty |
241 | calendar. | 241 | calendar. |
242 | */ | 242 | */ |
243 | void closeCalendar(); | 243 | void closeCalendar(); |
244 | 244 | ||
245 | /** Archive old events of calendar */ | 245 | /** Archive old events of calendar */ |
246 | void archiveCalendar(); | 246 | void archiveCalendar(); |
247 | 247 | ||
248 | void showIncidence(); | 248 | void showIncidence(); |
249 | void editIncidence(); | 249 | void editIncidence(); |
250 | void editIncidenceDescription(); | 250 | void editIncidenceDescription(); |
251 | void deleteIncidence(); | 251 | void deleteIncidence(); |
252 | void cloneIncidence(); | 252 | void cloneIncidence(); |
253 | void moveIncidence(); | 253 | void moveIncidence(); |
254 | void beamIncidence(); | 254 | void beamIncidence(); |
255 | void toggleCancelIncidence(); | 255 | void toggleCancelIncidence(); |
256 | 256 | ||
257 | /** create an editeventwin with supplied date/time, and if bool is true, | 257 | /** create an editeventwin with supplied date/time, and if bool is true, |
258 | * make the event take all day. */ | 258 | * make the event take all day. */ |
259 | void newEvent(QDateTime, QDateTime, bool allDay ); | 259 | void newEvent(QDateTime, QDateTime, bool allDay ); |
260 | void newEvent(QDateTime, QDateTime); | 260 | void newEvent(QDateTime, QDateTime); |
261 | void newEvent(QDateTime fh); | 261 | void newEvent(QDateTime fh); |
262 | void newEvent(QDate dt); | 262 | void newEvent(QDate dt); |
263 | /** create new event without having a date hint. Takes current date as | 263 | /** create new event without having a date hint. Takes current date as |
264 | default hint. */ | 264 | default hint. */ |
265 | void newEvent(); | 265 | void newEvent(); |
266 | void newFloatingEvent(); | 266 | void newFloatingEvent(); |
267 | 267 | ||
268 | /** Create a read-only viewer dialog for the supplied incidence. It calls the correct showXXX method*/ | 268 | /** Create a read-only viewer dialog for the supplied incidence. It calls the correct showXXX method*/ |
269 | void showIncidence(Incidence *); | 269 | void showIncidence(Incidence *); |
270 | void showIncidence(QString uid); | 270 | void showIncidence(QString uid); |
271 | /** Create an editor for the supplied incidence. It calls the correct editXXX method*/ | 271 | /** Create an editor for the supplied incidence. It calls the correct editXXX method*/ |
272 | void editIncidence(Incidence *); | 272 | void editIncidence(Incidence *); |
273 | /** Delete the supplied incidence. It calls the correct deleteXXX method*/ | 273 | /** Delete the supplied incidence. It calls the correct deleteXXX method*/ |
274 | void deleteIncidence(Incidence *); | 274 | void deleteIncidence(Incidence *); |
275 | void cloneIncidence(Incidence *); | 275 | void cloneIncidence(Incidence *); |
276 | void cancelIncidence(Incidence *); | 276 | void cancelIncidence(Incidence *); |
277 | /** Create an editor for the supplied event. */ | 277 | /** Create an editor for the supplied event. */ |
278 | void editEvent(Event *); | 278 | void editEvent(Event *); |
279 | /** Delete the supplied event. */ | 279 | /** Delete the supplied event. */ |
280 | void deleteEvent(Event *); | 280 | void deleteEvent(Event *); |
281 | /** Delete the event with the given unique ID. Returns false, if event wasn't | 281 | /** Delete the event with the given unique ID. Returns false, if event wasn't |
282 | found. */ | 282 | found. */ |
283 | bool deleteEvent(const QString &uid); | 283 | bool deleteEvent(const QString &uid); |
284 | /** Create a read-only viewer dialog for the supplied event. */ | 284 | /** Create a read-only viewer dialog for the supplied event. */ |
285 | void showEvent(Event *); | 285 | void showEvent(Event *); |
286 | 286 | ||
287 | void editJournal(Journal *); | 287 | void editJournal(Journal *); |
288 | void showJournal(Journal *); | 288 | void showJournal(Journal *); |
289 | void deleteJournal(Journal *); | 289 | void deleteJournal(Journal *); |
290 | /** Create an editor dialog for a todo */ | 290 | /** Create an editor dialog for a todo */ |
291 | void editTodo(Todo *); | 291 | void editTodo(Todo *); |
292 | /** Create a read-only viewer dialog for the supplied todo */ | 292 | /** Create a read-only viewer dialog for the supplied todo */ |
293 | void showTodo(Todo *); | 293 | void showTodo(Todo *); |
294 | /** create new todo */ | 294 | /** create new todo */ |
295 | void newTodo(); | 295 | void newTodo(); |
296 | void newTodoDateTime(QDateTime, bool allday); | 296 | void newTodoDateTime(QDateTime, bool allday); |
297 | /** create new todo with a parent todo */ | 297 | /** create new todo with a parent todo */ |
298 | void newSubTodo(); | 298 | void newSubTodo(); |
299 | /** create new todo with a parent todo */ | 299 | /** create new todo with a parent todo */ |
300 | void newSubTodo(Todo *); | 300 | void newSubTodo(Todo *); |
301 | /** Delete todo */ | 301 | /** Delete todo */ |
302 | void deleteTodo(Todo *); | 302 | void deleteTodo(Todo *); |
303 | 303 | ||
304 | 304 | ||
305 | /** Check if clipboard contains vCalendar event. The signal pasteEnabled() is | 305 | /** Check if clipboard contains vCalendar event. The signal pasteEnabled() is |
306 | * emitted as result. */ | 306 | * emitted as result. */ |
307 | void checkClipboard(); | 307 | void checkClipboard(); |
308 | 308 | ||
309 | /** using the KConfig associated with the kapp variable, read in the | 309 | /** using the KConfig associated with the kapp variable, read in the |
310 | * settings from the config file. | 310 | * settings from the config file. |
311 | */ | 311 | */ |
312 | void readSettings(); | 312 | void readSettings(); |
313 | 313 | ||
314 | /** write current state to config file. */ | 314 | /** write current state to config file. */ |
315 | void writeSettings(); | 315 | void writeSettings(); |
316 | 316 | ||
317 | /** read settings for calendar filters */ | 317 | /** read settings for calendar filters */ |
318 | void readFilterSettings(KConfig *config); | 318 | void readFilterSettings(KConfig *config); |
319 | 319 | ||
320 | /** write settings for calendar filters */ | 320 | /** write settings for calendar filters */ |
321 | void writeFilterSettings(KConfig *config); | 321 | void writeFilterSettings(KConfig *config); |
322 | 322 | ||
323 | /** passes on the message that an event has changed to the currently | 323 | /** passes on the message that an event has changed to the currently |
324 | * activated view so that it can make appropriate display changes. */ | 324 | * activated view so that it can make appropriate display changes. */ |
325 | void changeEventDisplay(Event *, int); | 325 | void changeEventDisplay(Event *, int); |
326 | void changeIncidenceDisplay(Incidence *, int); | 326 | void changeIncidenceDisplay(Incidence *, int); |
327 | void changeTodoDisplay(Todo *, int); | 327 | void changeTodoDisplay(Todo *, int); |
328 | 328 | ||
329 | void eventAdded(Event *); | 329 | void eventAdded(Event *); |
330 | void eventChanged(Event *); | 330 | void eventChanged(Event *); |
331 | void eventToBeDeleted(Event *); | 331 | void eventToBeDeleted(Event *); |
332 | void eventDeleted(); | 332 | void eventDeleted(); |
333 | 333 | ||
334 | void todoAdded(Todo *); | 334 | void todoAdded(Todo *); |
335 | void todoChanged(Todo *); | 335 | void todoChanged(Todo *); |
336 | void todoToBeDeleted(Todo *); | 336 | void todoToBeDeleted(Todo *); |
337 | void todoDeleted(); | 337 | void todoDeleted(); |
338 | 338 | ||
339 | void updateView(const QDate &start, const QDate &end); | 339 | void updateView(const QDate &start, const QDate &end); |
340 | void updateView(); | 340 | void updateView(); |
341 | void clearAllViews(); | 341 | void clearAllViews(); |
342 | 342 | ||
343 | /** Full update of visible todo views */ | 343 | /** Full update of visible todo views */ |
344 | void updateTodoViews(); | 344 | void updateTodoViews(); |
345 | 345 | ||
346 | void updateUnmanagedViews(); | 346 | void updateUnmanagedViews(); |
347 | 347 | ||
348 | /** cut the current appointment to the clipboard */ | 348 | /** cut the current appointment to the clipboard */ |
349 | void edit_cut(); | 349 | void edit_cut(); |
350 | 350 | ||
351 | /** copy the current appointment(s) to the clipboard */ | 351 | /** copy the current appointment(s) to the clipboard */ |
352 | void edit_copy(); | 352 | void edit_copy(); |
353 | 353 | ||
354 | /** paste the current vobject(s) in the clipboard buffer into calendar */ | 354 | /** paste the current vobject(s) in the clipboard buffer into calendar */ |
355 | void edit_paste(); | 355 | void edit_paste(); |
356 | 356 | ||
357 | /** edit viewing and configuration options. */ | 357 | /** edit viewing and configuration options. */ |
358 | void edit_options(); | 358 | void edit_options(); |
359 | void edit_global_options(); | 359 | void edit_global_options(); |
360 | /** | 360 | /** |
361 | Functions for printing, previewing a print, and setting up printing | 361 | Functions for printing, previewing a print, and setting up printing |
362 | parameters. | 362 | parameters. |
363 | */ | 363 | */ |
364 | void print(); | 364 | void print(); |
365 | void printSetup(); | 365 | void printSetup(); |
366 | void printPreview(); | 366 | void printPreview(); |
367 | 367 | ||
368 | /** Export as iCalendar file */ | 368 | /** Export as iCalendar file */ |
369 | void exportICalendar(); | 369 | void exportICalendar(); |
370 | 370 | ||
371 | /** Export as vCalendar file */ | 371 | /** Export as vCalendar file */ |
372 | bool exportVCalendar( QString fn); | 372 | bool exportVCalendar( QString fn); |
373 | 373 | ||
374 | /** pop up a dialog to show an existing appointment. */ | 374 | /** pop up a dialog to show an existing appointment. */ |
375 | void appointment_show(); | 375 | void appointment_show(); |
376 | /** | 376 | /** |
377 | * pop up an Appointment Dialog to edit an existing appointment.Get | 377 | * pop up an Appointment Dialog to edit an existing appointment.Get |
378 | * information on the appointment from the list of unique IDs that is | 378 | * information on the appointment from the list of unique IDs that is |
379 | * currently in the View, called currIds. | 379 | * currently in the View, called currIds. |
380 | */ | 380 | */ |
381 | void appointment_edit(); | 381 | void appointment_edit(); |
382 | /** | 382 | /** |
383 | * pop up dialog confirming deletion of currently selected event in the | 383 | * pop up dialog confirming deletion of currently selected event in the |
384 | * View. | 384 | * View. |
385 | */ | 385 | */ |
386 | void appointment_delete(); | 386 | void appointment_delete(); |
387 | 387 | ||
388 | /** mails the currently selected event to a particular user as a vCalendar | 388 | /** mails the currently selected event to a particular user as a vCalendar |
389 | attachment. */ | 389 | attachment. */ |
390 | void action_mail(); | 390 | void action_mail(); |
391 | 391 | ||
392 | /* frees a subtodo from it's relation */ | 392 | /* frees a subtodo from it's relation */ |
393 | void todo_unsub( Todo * ); | 393 | void todo_unsub( Todo * ); |
394 | void todo_resub( Todo * parent, Todo * sub ); | 394 | void todo_resub( Todo * parent, Todo * sub ); |
395 | 395 | ||
396 | /** Take ownership of selected event. */ | 396 | /** Take ownership of selected event. */ |
397 | void takeOverEvent(); | 397 | void takeOverEvent(); |
398 | 398 | ||
399 | /** Take ownership of all events in calendar. */ | 399 | /** Take ownership of all events in calendar. */ |
400 | void takeOverCalendar(); | 400 | void takeOverCalendar(); |
401 | 401 | ||
402 | /** query whether or not the calendar is "dirty". */ | 402 | /** query whether or not the calendar is "dirty". */ |
403 | bool isModified(); | 403 | bool isModified(); |
404 | /** set the state of calendar. Modified means "dirty", i.e. needing a save. */ | 404 | /** set the state of calendar. Modified means "dirty", i.e. needing a save. */ |
405 | void setModified(bool modified=true); | 405 | void setModified(bool modified=true); |
406 | 406 | ||
407 | /** query if the calendar is read-only. */ | 407 | /** query if the calendar is read-only. */ |
408 | bool isReadOnly(); | 408 | bool isReadOnly(); |
409 | /** set state of calendar to read-only */ | 409 | /** set state of calendar to read-only */ |
410 | void setReadOnly(bool readOnly=true); | 410 | void setReadOnly(bool readOnly=true); |
411 | 411 | ||
412 | void eventUpdated(Incidence *); | 412 | void eventUpdated(Incidence *); |
413 | 413 | ||
414 | /* iTIP scheduling actions */ | 414 | /* iTIP scheduling actions */ |
415 | void schedule_publish(Incidence *incidence = 0); | 415 | void schedule_publish(Incidence *incidence = 0); |
416 | void schedule_request(Incidence *incidence = 0); | 416 | void schedule_request(Incidence *incidence = 0); |
417 | void schedule_refresh(Incidence *incidence = 0); | 417 | void schedule_refresh(Incidence *incidence = 0); |
418 | void schedule_cancel(Incidence *incidence = 0); | 418 | void schedule_cancel(Incidence *incidence = 0); |
419 | void schedule_add(Incidence *incidence = 0); | 419 | void schedule_add(Incidence *incidence = 0); |
420 | void schedule_reply(Incidence *incidence = 0); | 420 | void schedule_reply(Incidence *incidence = 0); |
421 | void schedule_counter(Incidence *incidence = 0); | 421 | void schedule_counter(Incidence *incidence = 0); |
422 | void schedule_declinecounter(Incidence *incidence = 0); | 422 | void schedule_declinecounter(Incidence *incidence = 0); |
423 | void schedule_publish_freebusy(int daysToPublish = 30); | 423 | void schedule_publish_freebusy(int daysToPublish = 30); |
424 | 424 | ||
425 | void openAddressbook(); | 425 | void openAddressbook(); |
426 | 426 | ||
427 | void editFilters(); | 427 | void editFilters(); |
428 | void toggleFilerEnabled(); | 428 | void toggleFilerEnabled(); |
429 | QPtrList<CalFilter> filters(); | 429 | QPtrList<CalFilter> filters(); |
430 | void toggleFilter(); | 430 | void toggleFilter(); |
431 | void showFilter(bool visible); | 431 | void showFilter(bool visible); |
432 | void updateFilter(); | 432 | void updateFilter(); |
433 | void filterEdited(); | 433 | void filterEdited(); |
434 | void selectFilter( int ); | 434 | void selectFilter( int ); |
435 | KOFilterView *filterView(); | 435 | KOFilterView *filterView(); |
436 | 436 | ||
437 | void showIntro(); | 437 | void showIntro(); |
438 | 438 | ||
439 | /** Move the curdatepient view date to today */ | 439 | /** Move the curdatepient view date to today */ |
440 | void goToday(); | 440 | void goToday(); |
441 | 441 | ||
442 | /** Move to the next date(s) in the current view */ | 442 | /** Move to the next date(s) in the current view */ |
443 | void goNext(); | 443 | void goNext(); |
444 | 444 | ||
445 | /** Move to the previous date(s) in the current view */ | 445 | /** Move to the previous date(s) in the current view */ |
446 | void goPrevious(); | 446 | void goPrevious(); |
447 | /** Move to the next date(s) in the current view */ | 447 | /** Move to the next date(s) in the current view */ |
448 | void goNextMonth(); | 448 | void goNextMonth(); |
449 | 449 | ||
450 | /** Move to the previous date(s) in the current view */ | 450 | /** Move to the previous date(s) in the current view */ |
451 | void goPreviousMonth(); | 451 | void goPreviousMonth(); |
452 | 452 | ||
453 | void toggleExpand(); | 453 | void toggleExpand(); |
454 | void toggleDateNavigatorWidget(); | 454 | void toggleDateNavigatorWidget(); |
455 | void toggleAllDaySize(); | 455 | void toggleAllDaySize(); |
456 | void dialogClosing(Incidence *); | 456 | void dialogClosing(Incidence *); |
457 | 457 | ||
458 | /** Look for new messages in the inbox */ | 458 | /** Look for new messages in the inbox */ |
459 | void lookForIncomingMessages(); | 459 | void lookForIncomingMessages(); |
460 | /** Look for new messages in the outbox */ | 460 | /** Look for new messages in the outbox */ |
461 | void lookForOutgoingMessages(); | 461 | void lookForOutgoingMessages(); |
462 | 462 | ||
463 | void processMainViewSelection( Incidence * ); | 463 | void processMainViewSelection( Incidence * ); |
464 | void processTodoListSelection( Incidence * ); | 464 | void processTodoListSelection( Incidence * ); |
465 | 465 | ||
466 | void processIncidenceSelection( Incidence * ); | 466 | void processIncidenceSelection( Incidence * ); |
467 | 467 | ||
468 | void purgeCompleted(); | 468 | void purgeCompleted(); |
469 | bool removeCompletedSubTodos( Todo* ); | 469 | bool removeCompletedSubTodos( Todo* ); |
470 | void slotCalendarChanged(); | 470 | void slotCalendarChanged(); |
471 | bool importBday(); | 471 | bool importBday(); |
472 | bool addAnniversary( QDate data, QString name, KCal::Attendee* a , bool birthday ); | 472 | bool addAnniversary( QDate data, QString name, KCal::Attendee* a , bool birthday ); |
473 | bool importQtopia( const QString &categoriesFile, | 473 | bool importQtopia( const QString &categoriesFile, |
474 | const QString &datebookFile, | 474 | const QString &datebookFile, |
475 | const QString &tasklistFile ); | 475 | const QString &tasklistFile ); |
476 | void syncExternal( int mode ); | 476 | void syncExternal( int mode ); |
477 | void slotSelectPickerDate( QDate ) ; | 477 | void slotSelectPickerDate( QDate ) ; |
478 | void showDatePicker() ; | 478 | void showDatePicker() ; |
479 | void showDatePickerPopup() ; | 479 | void showDatePickerPopup() ; |
480 | void moveIncidence(Incidence *) ; | 480 | void moveIncidence(Incidence *) ; |
481 | void beamIncidence(Incidence *) ; | 481 | void beamIncidence(Incidence *) ; |
482 | void beamCalendar() ; | 482 | void beamCalendar() ; |
483 | void beamFilteredCalendar() ; | 483 | void beamFilteredCalendar() ; |
484 | void beamIncidenceList(QPtrList<Incidence>) ; | 484 | void beamIncidenceList(QPtrList<Incidence>) ; |
485 | void manageCategories(); | 485 | void manageCategories(); |
486 | int addCategories(); | 486 | int addCategories(); |
487 | void removeCategories(); | 487 | void removeCategories(); |
488 | void setSyncDevice( QString ); | 488 | void setSyncDevice( QString ); |
489 | void setSyncName( QString ); | 489 | void setSyncName( QString ); |
490 | void showDay( QDate ); | 490 | void showDay( QDate ); |
491 | void undo_delete(); | 491 | void undo_delete(); |
492 | protected slots: | 492 | protected slots: |
493 | void resetFocus(); | 493 | void resetFocus(); |
494 | void slotViewerClosed(); | 494 | void slotViewerClosed(); |
495 | void timerAlarm(); | 495 | void timerAlarm(); |
496 | void suspendAlarm(); | 496 | void suspendAlarm(); |
497 | void beamDone( Ir *ir ); | 497 | void beamDone( Ir *ir ); |
498 | /** Select a view or adapt the current view to display the specified dates. */ | 498 | /** Select a view or adapt the current view to display the specified dates. */ |
499 | void showDates( const KCal::DateList & ); | 499 | void showDates( const KCal::DateList & ); |
500 | void selectWeekNum ( int ); | 500 | void selectWeekNum ( int ); |
501 | 501 | ||
502 | public: | 502 | public: |
503 | // show a standard warning | 503 | // show a standard warning |
504 | // returns KMsgBox::yesNoCancel() | 504 | // returns KMsgBox::yesNoCancel() |
505 | int msgCalModified(); | 505 | int msgCalModified(); |
506 | virtual bool sync(KSyncManager* manager, QString filename, int mode); | 506 | virtual bool sync(KSyncManager* manager, QString filename, int mode); |
507 | 507 | ||
508 | virtual bool syncExternal(KSyncManager* manager, QString resource); | 508 | virtual bool syncExternal(KSyncManager* manager, QString resource); |
509 | virtual void removeSyncInfo( QString syncProfile); | 509 | virtual void removeSyncInfo( QString syncProfile); |
510 | void setSyncManager(KSyncManager* manager); | 510 | void setSyncManager(KSyncManager* manager); |
511 | void setLoadedFileVersion(QDateTime); | 511 | void setLoadedFileVersion(QDateTime); |
512 | bool checkFileVersion(QString fn); | 512 | bool checkFileVersion(QString fn); |
513 | bool checkAllFileVersions(); | ||
513 | bool checkFileChanged(QString fn); | 514 | bool checkFileChanged(QString fn); |
514 | Event* getLastSyncEvent(); | 515 | Event* getLastSyncEvent(); |
515 | /** Adapt navigation units correpsonding to step size of navigation of the | 516 | /** Adapt navigation units correpsonding to step size of navigation of the |
516 | * current view. | 517 | * current view. |
517 | */ | 518 | */ |
518 | void adaptNavigationUnits(); | 519 | void adaptNavigationUnits(); |
519 | bool synchronizeCalendar( Calendar* local, Calendar* remote, int mode ); | 520 | bool synchronizeCalendar( Calendar* local, Calendar* remote, int mode ); |
520 | int takeEvent( Incidence* local, Incidence* remote, int mode, bool full = false ); | 521 | int takeEvent( Incidence* local, Incidence* remote, int mode, bool full = false ); |
521 | //Attendee* getYourAttendee(Event *event); | 522 | //Attendee* getYourAttendee(Event *event); |
522 | void setBlockShowDates( bool b ) { mBlockShowDates = b ;} | 523 | void setBlockShowDates( bool b ) { mBlockShowDates = b ;} |
523 | protected: | 524 | protected: |
524 | void schedule(Scheduler::Method, Incidence *incidence = 0); | 525 | void schedule(Scheduler::Method, Incidence *incidence = 0); |
525 | 526 | ||
526 | // returns KMsgBox::OKCandel() | 527 | // returns KMsgBox::OKCandel() |
527 | int msgItemDelete(const QString name); | 528 | int msgItemDelete(const QString name); |
528 | void showEventEditor(); | 529 | void showEventEditor(); |
529 | void showTodoEditor(); | 530 | void showTodoEditor(); |
530 | void writeLocale(); | 531 | void writeLocale(); |
531 | Todo *selectedTodo(); | 532 | Todo *selectedTodo(); |
532 | 533 | ||
533 | private: | 534 | private: |
534 | QDateTime mNextAlarmDateTime; | 535 | QDateTime mNextAlarmDateTime; |
535 | bool mViewerCallerIsSearchDialog; | 536 | bool mViewerCallerIsSearchDialog; |
536 | bool mBlockShowDates; | 537 | bool mBlockShowDates; |
537 | KSyncManager* mSyncManager; | 538 | KSyncManager* mSyncManager; |
538 | AlarmDialog * mAlarmDialog; | 539 | AlarmDialog * mAlarmDialog; |
539 | QString mAlarmNotification; | 540 | QString mAlarmNotification; |
540 | QString mSuspendAlarmNotification; | 541 | QString mSuspendAlarmNotification; |
541 | QTimer* mSuspendTimer; | 542 | QTimer* mSuspendTimer; |
542 | QTimer* mAlarmTimer; | 543 | QTimer* mAlarmTimer; |
543 | QTimer* mRecheckAlarmTimer; | 544 | QTimer* mRecheckAlarmTimer; |
544 | void computeAlarm( QString ); | 545 | void computeAlarm( QString ); |
545 | void startAlarm( QString, QString ); | 546 | void startAlarm( QString, QString ); |
546 | void setSyncEventsReadOnly(); | 547 | void setSyncEventsReadOnly(); |
547 | 548 | ||
548 | QDateTime loadedFileVersion; | 549 | QDateTime loadedFileVersion; |
549 | void checkExternSyncEvent( QPtrList<Event> lastSync , Incidence* toDelete ); | 550 | void checkExternSyncEvent( QPtrList<Event> lastSync , Incidence* toDelete ); |
550 | void checkExternalId( Incidence * inc ); | 551 | void checkExternalId( Incidence * inc ); |
551 | int mGlobalSyncMode; | 552 | int mGlobalSyncMode; |
552 | QString mCurrentSyncDevice; | 553 | QString mCurrentSyncDevice; |
553 | QString mCurrentSyncName; | 554 | QString mCurrentSyncName; |
554 | KOBeamPrefs* beamDialog; | 555 | KOBeamPrefs* beamDialog; |
555 | void init(); | 556 | void init(); |
556 | int mDatePickerMode; | 557 | int mDatePickerMode; |
557 | bool mFlagEditDescription; | 558 | bool mFlagEditDescription; |
558 | QDateTime mLastCalendarSync; | 559 | QDateTime mLastCalendarSync; |
559 | void createPrinter(); | 560 | void createPrinter(); |
560 | 561 | ||
561 | void calendarModified( bool, Calendar * ); | 562 | void calendarModified( bool, Calendar * ); |
562 | 563 | ||
563 | CalPrinter *mCalPrinter; | 564 | CalPrinter *mCalPrinter; |
564 | 565 | ||
565 | QSplitter *mPanner; | 566 | QSplitter *mPanner; |
566 | QSplitter *mLeftSplitter; | 567 | QSplitter *mLeftSplitter; |
567 | KDGanttMinimizeSplitter *mLeftFrame, *mMainFrame; | 568 | KDGanttMinimizeSplitter *mLeftFrame, *mMainFrame; |
568 | QWidgetStack *mRightFrame; | 569 | QWidgetStack *mRightFrame; |
569 | 570 | ||
570 | KDatePicker* mDatePicker; | 571 | KDatePicker* mDatePicker; |
571 | QVBox* mDateFrame; | 572 | QVBox* mDateFrame; |
572 | 573 | ||
573 | DateNavigatorContainer *mDateNavigator; // widget showing small month view. | 574 | DateNavigatorContainer *mDateNavigator; // widget showing small month view. |
574 | 575 | ||
575 | KOFilterView *mFilterView; | 576 | KOFilterView *mFilterView; |
576 | KOCalEditView *mCalEditView; | 577 | KOCalEditView *mCalEditView; |
577 | 578 | ||
578 | ResourceView *mResourceView; | 579 | ResourceView *mResourceView; |
579 | 580 | ||
580 | // calendar object for this viewing instance | 581 | // calendar object for this viewing instance |
581 | Calendar *mCalendar; | 582 | Calendar *mCalendar; |
582 | 583 | ||
583 | CalendarResourceManager *mResourceManager; | 584 | CalendarResourceManager *mResourceManager; |
584 | 585 | ||
585 | FileStorage *mStorage; | 586 | FileStorage *mStorage; |
586 | 587 | ||
587 | DateNavigator *mNavigator; | 588 | DateNavigator *mNavigator; |
588 | 589 | ||
589 | KOViewManager *mViewManager; | 590 | KOViewManager *mViewManager; |
590 | KODialogManager *mDialogManager; | 591 | KODialogManager *mDialogManager; |
591 | 592 | ||
592 | // Calendar filters | 593 | // Calendar filters |
593 | QPtrList<CalFilter> mFilters; | 594 | QPtrList<CalFilter> mFilters; |
594 | 595 | ||
595 | // various housekeeping variables. | 596 | // various housekeeping variables. |
596 | bool mModified; // flag indicating if calendar is modified | 597 | bool mModified; // flag indicating if calendar is modified |
597 | bool mReadOnly; // flag indicating if calendar is read-only | 598 | bool mReadOnly; // flag indicating if calendar is read-only |
598 | QDate mSaveSingleDate; | 599 | QDate mSaveSingleDate; |
599 | 600 | ||
600 | Incidence *mSelectedIncidence; | 601 | Incidence *mSelectedIncidence; |
601 | Incidence *mMoveIncidence; | 602 | Incidence *mMoveIncidence; |
602 | QDate mMoveIncidenceOldDate; | 603 | QDate mMoveIncidenceOldDate; |
603 | KOTodoView *mTodoList; | 604 | KOTodoView *mTodoList; |
604 | KOEventEditor * mEventEditor; | 605 | KOEventEditor * mEventEditor; |
605 | KOTodoEditor * mTodoEditor; | 606 | KOTodoEditor * mTodoEditor; |
606 | KOEventViewerDialog * mEventViewerDialog; | 607 | KOEventViewerDialog * mEventViewerDialog; |
607 | void keyPressEvent ( QKeyEvent *e) ; | 608 | void keyPressEvent ( QKeyEvent *e) ; |
608 | //QMap<Incidence*,KOIncidenceEditor*> mDialogList; | 609 | //QMap<Incidence*,KOIncidenceEditor*> mDialogList; |
609 | }; | 610 | }; |
610 | 611 | ||
611 | 612 | ||
612 | class CalendarViewVisitor : public Incidence::Visitor | 613 | class CalendarViewVisitor : public Incidence::Visitor |
613 | { | 614 | { |
614 | public: | 615 | public: |
615 | CalendarViewVisitor() : mView( 0 ) {} | 616 | CalendarViewVisitor() : mView( 0 ) {} |
616 | 617 | ||
617 | bool act( Incidence *incidence, CalendarView *view ) | 618 | bool act( Incidence *incidence, CalendarView *view ) |
618 | { | 619 | { |
619 | mView = view; | 620 | mView = view; |
620 | return incidence->accept( *this ); | 621 | return incidence->accept( *this ); |
621 | } | 622 | } |
622 | 623 | ||
623 | protected: | 624 | protected: |
624 | CalendarView *mView; | 625 | CalendarView *mView; |
625 | }; | 626 | }; |
626 | 627 | ||
627 | class ShowIncidenceVisitor : public CalendarViewVisitor | 628 | class ShowIncidenceVisitor : public CalendarViewVisitor |
628 | { | 629 | { |
629 | protected: | 630 | protected: |
630 | bool visit( Event *event ) { mView->showEvent( event ); return true; } | 631 | bool visit( Event *event ) { mView->showEvent( event ); return true; } |
631 | bool visit( Todo *todo ) { mView->showTodo( todo ); return true; } | 632 | bool visit( Todo *todo ) { mView->showTodo( todo ); return true; } |
632 | bool visit( Journal * j ) { mView->showJournal( j );return true; } | 633 | bool visit( Journal * j ) { mView->showJournal( j );return true; } |
633 | }; | 634 | }; |
634 | 635 | ||
635 | class EditIncidenceVisitor : public CalendarViewVisitor | 636 | class EditIncidenceVisitor : public CalendarViewVisitor |
636 | { | 637 | { |
637 | protected: | 638 | protected: |
638 | bool visit( Event *event ) { mView->editEvent( event ); return true; } | 639 | bool visit( Event *event ) { mView->editEvent( event ); return true; } |
639 | bool visit( Todo *todo ) { mView->editTodo( todo ); return true; } | 640 | bool visit( Todo *todo ) { mView->editTodo( todo ); return true; } |
640 | bool visit( Journal *j ) { mView->editJournal( j); return true; } | 641 | bool visit( Journal *j ) { mView->editJournal( j); return true; } |
641 | }; | 642 | }; |
642 | 643 | ||
643 | class DeleteIncidenceVisitor : public CalendarViewVisitor | 644 | class DeleteIncidenceVisitor : public CalendarViewVisitor |
644 | { | 645 | { |
645 | protected: | 646 | protected: |
646 | bool visit( Event *event ) { mView->deleteEvent( event ); return true; } | 647 | bool visit( Event *event ) { mView->deleteEvent( event ); return true; } |
647 | bool visit( Todo *todo ) { mView->deleteTodo( todo ); return true; } | 648 | bool visit( Todo *todo ) { mView->deleteTodo( todo ); return true; } |
648 | bool visit( Journal * j) {mView->deleteJournal( j ); return true; } | 649 | bool visit( Journal * j) {mView->deleteJournal( j ); return true; } |
649 | }; | 650 | }; |
650 | 651 | ||
651 | #endif | 652 | #endif |
diff --git a/korganizer/kofilterview.cpp b/korganizer/kofilterview.cpp index 361eec8..19d731f 100644 --- a/korganizer/kofilterview.cpp +++ b/korganizer/kofilterview.cpp | |||
@@ -1,391 +1,407 @@ | |||
1 | /* | 1 | /* |
2 | This file is part of KOrganizer. | 2 | This file is part of KOrganizer. |
3 | Copyright (c) 2001 Cornelius Schumacher <schumacher@kde.org> | 3 | Copyright (c) 2001 Cornelius Schumacher <schumacher@kde.org> |
4 | 4 | ||
5 | This program is free software; you can redistribute it and/or modify | 5 | This program is free software; you can redistribute it and/or modify |
6 | it under the terms of the GNU General Public License as published by | 6 | it under the terms of the GNU General Public License as published by |
7 | the Free Software Foundation; either version 2 of the License, or | 7 | the Free Software Foundation; either version 2 of the License, or |
8 | (at your option) any later version. | 8 | (at your option) any later version. |
9 | 9 | ||
10 | This program is distributed in the hope that it will be useful, | 10 | This program is distributed in the hope that it will be useful, |
11 | but WITHOUT ANY WARRANTY; without even the implied warranty of | 11 | but WITHOUT ANY WARRANTY; without even the implied warranty of |
12 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | 12 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
13 | GNU General Public License for more details. | 13 | GNU General Public License for more details. |
14 | 14 | ||
15 | You should have received a copy of the GNU General Public License | 15 | You should have received a copy of the GNU General Public License |
16 | along with this program; if not, write to the Free Software | 16 | along with this program; if not, write to the Free Software |
17 | Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. | 17 | Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. |
18 | 18 | ||
19 | As a special exception, permission is given to link this program | 19 | As a special exception, permission is given to link this program |
20 | with any edition of Qt, and distribute the resulting executable, | 20 | with any edition of Qt, and distribute the resulting executable, |
21 | without including the source code for Qt in the source distribution. | 21 | without including the source code for Qt in the source distribution. |
22 | */ | 22 | */ |
23 | 23 | ||
24 | #include <qcheckbox.h> | 24 | #include <qcheckbox.h> |
25 | #include <qcombobox.h> | 25 | #include <qcombobox.h> |
26 | #include <qpushbutton.h> | 26 | #include <qpushbutton.h> |
27 | #include <qlayout.h> | 27 | #include <qlayout.h> |
28 | #include <qlabel.h> | 28 | #include <qlabel.h> |
29 | #include <qdialog.h> | 29 | #include <qdialog.h> |
30 | 30 | ||
31 | 31 | ||
32 | #include <libkcal/calfilter.h> | 32 | #include <libkcal/calfilter.h> |
33 | 33 | ||
34 | #include "kofilterview.h" | 34 | #include "kofilterview.h" |
35 | #include "koprefs.h" | 35 | #include "koprefs.h" |
36 | #include <kiconloader.h> | 36 | #include <kiconloader.h> |
37 | #include <kglobal.h> | 37 | #include <kglobal.h> |
38 | #include <kcolorbutton.h> | 38 | #include <kcolorbutton.h> |
39 | #include <kmessagebox.h> | 39 | #include <kmessagebox.h> |
40 | 40 | ||
41 | 41 | ||
42 | #include <kurlrequester.h> | 42 | #include <kurlrequester.h> |
43 | #include <klineedit.h> | 43 | #include <klineedit.h> |
44 | 44 | ||
45 | class KONewCalPrefs : public QDialog | 45 | class KONewCalPrefs : public QDialog |
46 | { | 46 | { |
47 | public: | 47 | public: |
48 | KONewCalPrefs( QWidget *parent=0, const char *name=0 ) : | 48 | KONewCalPrefs( QWidget *parent=0, const char *name=0 ) : |
49 | QDialog( parent, name, true ) | 49 | QDialog( parent, name, true ) |
50 | { | 50 | { |
51 | setCaption( i18n("Add new Calendar") ); | 51 | setCaption( i18n("Add new Calendar") ); |
52 | QVBoxLayout* lay = new QVBoxLayout( this ); | 52 | QVBoxLayout* lay = new QVBoxLayout( this ); |
53 | lay->setSpacing( 3 ); | 53 | lay->setSpacing( 3 ); |
54 | lay->setMargin( 3 ); | 54 | lay->setMargin( 3 ); |
55 | QLabel * lab = new QLabel( i18n("<b>Name of new calendar:</b>"), this ); | 55 | QLabel * lab = new QLabel( i18n("<b>Name of new calendar:</b>"), this ); |
56 | lay->addWidget( lab ); | 56 | lay->addWidget( lab ); |
57 | nameE = new KLineEdit( this ); | 57 | nameE = new KLineEdit( this ); |
58 | lay->addWidget( nameE ); | 58 | lay->addWidget( nameE ); |
59 | lab = new QLabel( i18n("Local ical (*.ics) file:"), this ); | 59 | lab = new QLabel( i18n("Local ical (*.ics) file:"), this ); |
60 | lay->addWidget( lab ); | 60 | lay->addWidget( lab ); |
61 | url = new KURLRequester ( this ); | 61 | url = new KURLRequester ( this ); |
62 | lay->addWidget( url ); | 62 | lay->addWidget( url ); |
63 | QPushButton * ok = new QPushButton( i18n("OK"), this ); | 63 | QPushButton * ok = new QPushButton( i18n("OK"), this ); |
64 | lay->addWidget( ok ); | 64 | lay->addWidget( ok ); |
65 | QPushButton * cancel = new QPushButton( i18n("Cancel"), this ); | 65 | QPushButton * cancel = new QPushButton( i18n("Cancel"), this ); |
66 | lay->addWidget( cancel ); | 66 | lay->addWidget( cancel ); |
67 | connect ( ok,SIGNAL(clicked() ),this , SLOT ( accept() ) ); | 67 | connect ( ok,SIGNAL(clicked() ),this , SLOT ( accept() ) ); |
68 | connect (cancel, SIGNAL(clicked() ), this, SLOT ( reject()) ); | 68 | connect (cancel, SIGNAL(clicked() ), this, SLOT ( reject()) ); |
69 | //resize( 200, 200 ); | 69 | //resize( 200, 200 ); |
70 | } | 70 | } |
71 | 71 | ||
72 | QString calName() { return nameE->text(); } | 72 | QString calName() { return nameE->text(); } |
73 | QString calFileName() { return url->url(); } | 73 | QString calFileName() { return url->url(); } |
74 | private: | 74 | private: |
75 | KLineEdit* nameE; | 75 | KLineEdit* nameE; |
76 | KURLRequester *url; | 76 | KURLRequester *url; |
77 | }; | 77 | }; |
78 | 78 | ||
79 | 79 | ||
80 | KOFilterView::KOFilterView(QPtrList<CalFilter> *filterList,QWidget* parent, | 80 | KOFilterView::KOFilterView(QPtrList<CalFilter> *filterList,QWidget* parent, |
81 | const char* name,WFlags fl ) | 81 | const char* name,WFlags fl ) |
82 | : KOFilterView_base(parent,name,fl) | 82 | : KOFilterView_base(parent,name,fl) |
83 | { | 83 | { |
84 | mFilters = filterList; | 84 | mFilters = filterList; |
85 | 85 | ||
86 | connect(mSelectionCombo,SIGNAL(activated(int)),SIGNAL(filterChanged())); | 86 | connect(mSelectionCombo,SIGNAL(activated(int)),SIGNAL(filterChanged())); |
87 | connect(mEnabledCheck,SIGNAL(clicked()),SIGNAL(filterChanged())); | 87 | connect(mEnabledCheck,SIGNAL(clicked()),SIGNAL(filterChanged())); |
88 | connect(mEditButton,SIGNAL(clicked()),SIGNAL(editFilters())); | 88 | connect(mEditButton,SIGNAL(clicked()),SIGNAL(editFilters())); |
89 | } | 89 | } |
90 | 90 | ||
91 | KOFilterView::~KOFilterView() | 91 | KOFilterView::~KOFilterView() |
92 | { | 92 | { |
93 | // no need to delete child widgets, Qt does it all for us | 93 | // no need to delete child widgets, Qt does it all for us |
94 | } | 94 | } |
95 | 95 | ||
96 | bool KOFilterView::filtersEnabled() | 96 | bool KOFilterView::filtersEnabled() |
97 | { | 97 | { |
98 | return mEnabledCheck->isChecked(); | 98 | return mEnabledCheck->isChecked(); |
99 | } | 99 | } |
100 | 100 | ||
101 | void KOFilterView::setFiltersEnabled(bool set) | 101 | void KOFilterView::setFiltersEnabled(bool set) |
102 | { | 102 | { |
103 | mEnabledCheck->setChecked(set); | 103 | mEnabledCheck->setChecked(set); |
104 | emit filterChanged(); | 104 | emit filterChanged(); |
105 | } | 105 | } |
106 | 106 | ||
107 | 107 | ||
108 | void KOFilterView::updateFilters() | 108 | void KOFilterView::updateFilters() |
109 | { | 109 | { |
110 | mSelectionCombo->clear(); | 110 | mSelectionCombo->clear(); |
111 | 111 | ||
112 | CalFilter *filter = mFilters->first(); | 112 | CalFilter *filter = mFilters->first(); |
113 | while(filter) { | 113 | while(filter) { |
114 | mSelectionCombo->insertItem(filter->name()); | 114 | mSelectionCombo->insertItem(filter->name()); |
115 | filter = mFilters->next(); | 115 | filter = mFilters->next(); |
116 | } | 116 | } |
117 | } | 117 | } |
118 | 118 | ||
119 | CalFilter *KOFilterView::selectedFilter() | 119 | CalFilter *KOFilterView::selectedFilter() |
120 | { | 120 | { |
121 | CalFilter *f = mFilters->at(mSelectionCombo->currentItem()); | 121 | CalFilter *f = mFilters->at(mSelectionCombo->currentItem()); |
122 | return f; | 122 | return f; |
123 | } | 123 | } |
124 | 124 | ||
125 | void KOFilterView::setSelectedFilter(QString filterName) | 125 | void KOFilterView::setSelectedFilter(QString filterName) |
126 | { | 126 | { |
127 | int filter_num = mSelectionCombo->count(); | 127 | int filter_num = mSelectionCombo->count(); |
128 | int i; | 128 | int i; |
129 | for (i=0;i<filter_num;i++) { | 129 | for (i=0;i<filter_num;i++) { |
130 | if (mSelectionCombo->text(i)==filterName) | 130 | if (mSelectionCombo->text(i)==filterName) |
131 | mSelectionCombo->setCurrentItem(i); | 131 | mSelectionCombo->setCurrentItem(i); |
132 | } | 132 | } |
133 | emit filterChanged(); | 133 | emit filterChanged(); |
134 | } | 134 | } |
135 | void KOFilterView::setSelectedFilter( int fil ) | 135 | void KOFilterView::setSelectedFilter( int fil ) |
136 | { | 136 | { |
137 | if ( fil >= mSelectionCombo->count() ) | 137 | if ( fil >= mSelectionCombo->count() ) |
138 | return; | 138 | return; |
139 | mSelectionCombo->setCurrentItem( fil ); | 139 | mSelectionCombo->setCurrentItem( fil ); |
140 | emit filterChanged(); | 140 | emit filterChanged(); |
141 | } | 141 | } |
142 | 142 | ||
143 | 143 | ||
144 | 144 | ||
145 | KOCalEditView::KOCalEditView(QWidget* parent, | 145 | KOCalEditView::KOCalEditView(QWidget* parent, |
146 | const char* name ) | 146 | const char* name ) |
147 | : QWidget(parent,name) | 147 | : QWidget(parent,name) |
148 | { | 148 | { |
149 | mw = 0; | 149 | mw = 0; |
150 | ml = new QVBoxLayout ( this ); | 150 | ml = new QVBoxLayout ( this ); |
151 | } | 151 | } |
152 | 152 | ||
153 | KOCalEditView::~KOCalEditView() | 153 | KOCalEditView::~KOCalEditView() |
154 | { | 154 | { |
155 | // no need to delete child widgets, Qt does it all for us | 155 | // no need to delete child widgets, Qt does it all for us |
156 | } | 156 | } |
157 | void KOCalEditView::selectCal(int id ,bool b) | 157 | void KOCalEditView::selectCal(int id ,bool b) |
158 | { | 158 | { |
159 | KOPrefs::instance()->getCalendar( id )->isEnabled = b; | 159 | KOPrefs::instance()->getCalendar( id )->isEnabled = b; |
160 | emit calendarEnabled ( id, b ); | 160 | emit calendarEnabled ( id, b ); |
161 | emit needsUpdate(); | 161 | emit needsUpdate(); |
162 | 162 | ||
163 | } | 163 | } |
164 | void KOCalEditView::selectStdCal( int id, bool b ) | 164 | void KOCalEditView::selectStdCal( int id, bool b ) |
165 | { | 165 | { |
166 | 166 | ||
167 | if ( !b ) { | 167 | if ( !b ) { |
168 | KOCalCheckButton* it = (KOCalCheckButton*) sender(); | 168 | KOCalCheckButton* it = (KOCalCheckButton*) sender(); |
169 | if ( it ) { | 169 | if ( it ) { |
170 | it->blockSignals( true ); | 170 | it->blockSignals( true ); |
171 | it->setChecked( true ); | 171 | it->setChecked( true ); |
172 | it->blockSignals( false ); | 172 | it->blockSignals( false ); |
173 | return; | 173 | return; |
174 | } | 174 | } |
175 | return; | 175 | return; |
176 | } | 176 | } |
177 | KOCalCheckButton* sen = (KOCalCheckButton*) sender(); | 177 | KOCalCheckButton* sen = (KOCalCheckButton*) sender(); |
178 | KOCalCheckButton* it = mStdandardB.first(); | 178 | KOCalCheckButton* it = mStdandardB.first(); |
179 | while ( it ) { | 179 | while ( it ) { |
180 | if ( it->isChecked() ) { | 180 | if ( it->isChecked() ) { |
181 | if ( it != sen ) { | 181 | if ( it != sen ) { |
182 | it->blockSignals( true ); | 182 | it->blockSignals( true ); |
183 | it->setChecked( false ); | 183 | it->setChecked( false ); |
184 | it->blockSignals( false ); | 184 | it->blockSignals( false ); |
185 | break; | 185 | break; |
186 | } | 186 | } |
187 | } | 187 | } |
188 | it = mStdandardB.next(); | 188 | it = mStdandardB.next(); |
189 | } | 189 | } |
190 | KopiCalendarFile * kkf = KOPrefs::instance()->mCalendars.first(); | 190 | KopiCalendarFile * kkf = KOPrefs::instance()->mCalendars.first(); |
191 | while ( kkf ) { | 191 | while ( kkf ) { |
192 | kkf->isStandard = false; | 192 | kkf->isStandard = false; |
193 | kkf = KOPrefs::instance()->mCalendars.next(); | 193 | kkf = KOPrefs::instance()->mCalendars.next(); |
194 | } | 194 | } |
195 | KOPrefs::instance()->getCalendar( id )->isStandard = true; | 195 | KOPrefs::instance()->getCalendar( id )->isStandard = true; |
196 | emit setCalendarDefault ( id ); | 196 | emit setCalendarDefault ( id ); |
197 | } | 197 | } |
198 | 198 | ||
199 | void KOCalEditView::selectCalAlarm(int id ,bool b ) | 199 | void KOCalEditView::selectCalAlarm(int id ,bool b ) |
200 | { | 200 | { |
201 | KOPrefs::instance()->getCalendar( id )->isAlarmEnabled = b; | 201 | KOPrefs::instance()->getCalendar( id )->isAlarmEnabled = b; |
202 | emit alarmEnabled ( id , b ); | 202 | emit alarmEnabled ( id , b ); |
203 | emit needsUpdate(); | 203 | emit needsUpdate(); |
204 | } | 204 | } |
205 | void KOCalEditView::selectReadOnly(int id ,bool b ) | 205 | void KOCalEditView::selectReadOnly(int id ,bool b ) |
206 | { | 206 | { |
207 | KOPrefs::instance()->getCalendar( id )->isReadOnly = b; | 207 | KOPrefs::instance()->getCalendar( id )->isReadOnly = b; |
208 | emit calendarReadonly ( id , b ); | 208 | emit calendarReadonly ( id , b ); |
209 | emit needsUpdate(); | 209 | emit needsUpdate(); |
210 | 210 | ||
211 | } | 211 | } |
212 | void KOCalEditView::setColor( const QColor& c, int id ) | 212 | void KOCalEditView::setColor( const QColor& c, int id ) |
213 | { | 213 | { |
214 | KOPrefs::instance()->getCalendar( id )->mDefaultColor = c; | 214 | KOPrefs::instance()->getCalendar( id )->mDefaultColor = c; |
215 | emit needsUpdate(); | 215 | emit needsUpdate(); |
216 | } | 216 | } |
217 | void KOCalEditView::deleteCal( int id ) | 217 | void KOCalEditView::deleteCal( int id ) |
218 | { | 218 | { |
219 | KopiCalendarFile * kkf = KOPrefs::instance()->getCalendar( id ); | 219 | KopiCalendarFile * kkf = KOPrefs::instance()->getCalendar( id ); |
220 | QString name = kkf->mName; | 220 | QString name = kkf->mName; |
221 | QString file = kkf->mFileName; | 221 | QString file = kkf->mFileName; |
222 | if ( KMessageBox::warningContinueCancel( this, i18n("The calendar <b>%1</b> is displaying file <b>%2</b><tr> Do you want to remove this calendar from KO/Pi? (The file is not removed, of course!)").arg(name).arg(file) ) != KMessageBox::Continue ) return; | 222 | if ( KMessageBox::warningContinueCancel( this, i18n("The calendar <b>%1</b> is displaying file <b>%2</b><tr> Do you want to remove this calendar from KO/Pi? (The file is not removed, of course!)").arg(name).arg(file) ) != KMessageBox::Continue ) return; |
223 | if ( kkf->isStandard ) | 223 | if ( kkf->isStandard ) |
224 | selectStdCal( 1, true ); | 224 | selectStdCal( 1, true ); |
225 | emit removeCalendar ( id ); | 225 | emit removeCalendar ( id ); |
226 | KOPrefs::instance()->mCalendars.remove ( kkf ); | 226 | KOPrefs::instance()->mCalendars.remove ( kkf ); |
227 | emit needsUpdate(); | 227 | emit needsUpdate(); |
228 | readConfig(); | 228 | readConfig(); |
229 | } | 229 | } |
230 | void KOCalEditView::infoCal( int id ) | 230 | void KOCalEditView::infoCal( int id ) |
231 | { | 231 | { |
232 | QString name = KOPrefs::instance()->getCalendar( id )->mName; | 232 | QString name = KOPrefs::instance()->getCalendar( id )->mName; |
233 | QString file = KOPrefs::instance()->getCalendar( id )->mFileName; | 233 | QString file = KOPrefs::instance()->getCalendar( id )->mFileName; |
234 | KMessageBox::information( this, i18n("The calendar <b>%1</b> is displaying file <b>%2</b>").arg(name).arg(file) ); | 234 | if ( KOPrefs::instance()->getCalendar( id )->mErrorOnLoad ) { |
235 | if ( KMessageBox::Yes == KMessageBox::questionYesNo( this, i18n("The calendar <b>%1</b> is not loaded! Loading of file <b>%2</b> failed! <b>Try again to load the calendar?</b>").arg(name).arg(file) ) ) { | ||
236 | emit calendarAdded( id ); | ||
237 | readConfig(); | ||
238 | emit needsUpdate(); | ||
239 | } | ||
240 | } | ||
241 | else | ||
242 | KMessageBox::information( this, i18n("The calendar <b>%1</b> is displaying file <b>%2</b>").arg(name).arg(file) ); | ||
235 | } | 243 | } |
236 | void KOCalEditView::readConfig() | 244 | void KOCalEditView::readConfig() |
237 | { | 245 | { |
238 | 246 | ||
239 | mStdandardB.clear(); | 247 | mStdandardB.clear(); |
240 | mEnabledB.clear(); | 248 | mEnabledB.clear(); |
241 | mAlarmB.clear(); | 249 | mAlarmB.clear(); |
242 | mROB.clear(); | 250 | mROB.clear(); |
243 | 251 | ||
244 | if ( mw ) delete mw; | 252 | if ( mw ) delete mw; |
245 | mw = new QWidget ( this ); | 253 | mw = new QWidget ( this ); |
246 | ml->addWidget ( mw ); | 254 | ml->addWidget ( mw ); |
247 | 255 | ||
248 | mainLayout = new QGridLayout ( mw , 2, 8 ); | 256 | mainLayout = new QGridLayout ( mw , 2, 8 ); |
249 | //mainLayout->setSpacing( 3 ); | 257 | //mainLayout->setSpacing( 3 ); |
250 | QPushButton * addBut = new QPushButton ( mw ); | 258 | QPushButton * addBut = new QPushButton ( mw ); |
251 | mainLayout->addWidget( addBut,0,0 ); | 259 | mainLayout->addWidget( addBut,0,0 ); |
252 | addBut->setPixmap ( SmallIcon("plus")); | 260 | addBut->setPixmap ( SmallIcon("plus")); |
253 | connect(addBut,SIGNAL(clicked()),SLOT(addCal())); | 261 | connect(addBut,SIGNAL(clicked()),SLOT(addCal())); |
254 | addBut->setMaximumWidth( addBut->sizeHint().height() ); | 262 | addBut->setMaximumWidth( addBut->sizeHint().height() ); |
255 | 263 | ||
256 | addBut = new QPushButton ( mw ); | 264 | addBut = new QPushButton ( mw ); |
257 | mainLayout->addWidget( addBut,0,1 ); | 265 | mainLayout->addWidget( addBut,0,1 ); |
258 | addBut->setPixmap ( SmallIcon("eye")); | 266 | addBut->setPixmap ( SmallIcon("eye")); |
259 | connect(addBut,SIGNAL(clicked()),SLOT(enableAll())); | 267 | connect(addBut,SIGNAL(clicked()),SLOT(enableAll())); |
260 | addBut->setMaximumWidth( addBut->sizeHint().height() ); | 268 | addBut->setMaximumWidth( addBut->sizeHint().height() ); |
261 | 269 | ||
262 | QLabel* lab = new QLabel ( " "+i18n("Calendar")+" ", mw ); | 270 | QLabel* lab = new QLabel ( " "+i18n("Calendar")+" ", mw ); |
263 | mainLayout->addWidget( lab,0,2 ); | 271 | mainLayout->addWidget( lab,0,2 ); |
264 | 272 | ||
265 | addBut = new QPushButton ( mw ); | 273 | addBut = new QPushButton ( mw ); |
266 | mainLayout->addWidget( addBut,0,3 ); | 274 | mainLayout->addWidget( addBut,0,3 ); |
267 | addBut->setPixmap ( SmallIcon("bell")); | 275 | addBut->setPixmap ( SmallIcon("bell")); |
268 | connect(addBut,SIGNAL(clicked()),SLOT(enableAlarm())); | 276 | connect(addBut,SIGNAL(clicked()),SLOT(enableAlarm())); |
269 | addBut->setMaximumWidth( addBut->sizeHint().height() ); | 277 | addBut->setMaximumWidth( addBut->sizeHint().height() ); |
270 | 278 | ||
271 | addBut = new QPushButton ( mw ); | 279 | addBut = new QPushButton ( mw ); |
272 | mainLayout->addWidget( addBut,0,4 ); | 280 | mainLayout->addWidget( addBut,0,4 ); |
273 | addBut->setPixmap ( SmallIcon("pencil")); | 281 | addBut->setPixmap ( SmallIcon("pencil")); |
274 | connect(addBut,SIGNAL(clicked()),SLOT(disableRO())); | 282 | connect(addBut,SIGNAL(clicked()),SLOT(disableRO())); |
275 | addBut->setMaximumWidth( addBut->sizeHint().height() ); | 283 | addBut->setMaximumWidth( addBut->sizeHint().height() ); |
276 | 284 | ||
277 | lab = new QLabel ( i18n(" Color "), mw ); | 285 | lab = new QLabel ( i18n(" Color "), mw ); |
278 | mainLayout->addWidget( lab,0,5 ); | 286 | mainLayout->addWidget( lab,0,5 ); |
279 | #if 0 | 287 | #if 0 |
280 | addBut = new QPushButton ( mw ); | 288 | addBut = new QPushButton ( mw ); |
281 | mainLayout->addWidget( addBut,0,6 ); | 289 | mainLayout->addWidget( addBut,0,6 ); |
282 | addBut->setPixmap ( SmallIcon("minus")); | 290 | addBut->setPixmap ( SmallIcon("minus")); |
283 | connect(addBut,SIGNAL(clicked()),SLOT(deleteAll())); | 291 | connect(addBut,SIGNAL(clicked()),SLOT(deleteAll())); |
284 | addBut->setMaximumWidth( addBut->sizeHint().height() ); | 292 | addBut->setMaximumWidth( addBut->sizeHint().height() ); |
285 | #endif | 293 | #endif |
286 | 294 | ||
287 | 295 | ||
288 | KopiCalendarFile * kkf = KOPrefs::instance()->mCalendars.first(); | 296 | KopiCalendarFile * kkf = KOPrefs::instance()->mCalendars.first(); |
289 | int row = 1; | 297 | int row = 1; |
290 | while ( kkf ) { | 298 | while ( kkf ) { |
291 | 299 | ||
292 | KOCalCheckButton* cb = new KOCalCheckButton( mw ); | 300 | KOCalCheckButton* cb = new KOCalCheckButton( mw ); |
293 | mainLayout->addWidget( cb,row,0 );mStdandardB.append( cb ); | 301 | mainLayout->addWidget( cb,row,0 );mStdandardB.append( cb ); |
294 | cb->setChecked( kkf->isStandard ); | 302 | cb->setChecked( kkf->isStandard ); |
295 | cb->setNum( kkf->mCalNumber ); | 303 | cb->setNum( kkf->mCalNumber ); |
296 | connect (cb, SIGNAL (selectNum(int,bool)), SLOT ( selectStdCal(int,bool) ) ); | 304 | connect (cb, SIGNAL (selectNum(int,bool)), SLOT ( selectStdCal(int,bool) ) ); |
305 | if ( kkf->mErrorOnLoad ) | ||
306 | cb->setEnabled( false ); | ||
297 | cb = new KOCalCheckButton( mw ); | 307 | cb = new KOCalCheckButton( mw ); |
298 | mainLayout->addWidget( cb,row,1 );mEnabledB.append( cb ); | 308 | mainLayout->addWidget( cb,row,1 );mEnabledB.append( cb ); |
299 | cb->setChecked( kkf->isEnabled ); | 309 | cb->setChecked( kkf->isEnabled ); |
300 | cb->setNum( kkf->mCalNumber ); | 310 | cb->setNum( kkf->mCalNumber ); |
311 | if ( kkf->mErrorOnLoad ) | ||
312 | cb->setEnabled( false ); | ||
301 | connect (cb, SIGNAL (selectNum(int,bool)), SLOT ( selectCal(int,bool) ) ); | 313 | connect (cb, SIGNAL (selectNum(int,bool)), SLOT ( selectCal(int,bool) ) ); |
302 | KOCalButton* name = new KOCalButton( mw ); | 314 | KOCalButton* name = new KOCalButton( mw ); |
303 | name->setNum( kkf->mCalNumber ); | 315 | name->setNum( kkf->mCalNumber ); |
304 | name->setText( kkf->mName ); | 316 | name->setText( kkf->mName ); |
305 | mainLayout->addWidget( name,row,2 ); | 317 | mainLayout->addWidget( name,row,2 ); |
306 | connect (name, SIGNAL (selectNum(int)), SLOT ( infoCal(int) ) ); | 318 | connect (name, SIGNAL (selectNum(int)), SLOT ( infoCal(int) ) ); |
307 | cb = new KOCalCheckButton( mw ); | 319 | cb = new KOCalCheckButton( mw ); |
308 | mainLayout->addWidget( cb,row,3 );mAlarmB.append( cb ); | 320 | mainLayout->addWidget( cb,row,3 );mAlarmB.append( cb ); |
309 | cb->setChecked( kkf->isAlarmEnabled ); | 321 | cb->setChecked( kkf->isAlarmEnabled ); |
310 | cb->setNum( kkf->mCalNumber ); | 322 | cb->setNum( kkf->mCalNumber ); |
311 | connect (cb, SIGNAL (selectNum(int,bool)), SLOT ( selectCalAlarm(int,bool) ) ); | 323 | connect (cb, SIGNAL (selectNum(int,bool)), SLOT ( selectCalAlarm(int,bool) ) ); |
324 | if ( kkf->mErrorOnLoad ) | ||
325 | cb->setEnabled( false ); | ||
312 | cb = new KOCalCheckButton( mw ); | 326 | cb = new KOCalCheckButton( mw ); |
313 | mainLayout->addWidget( cb,row,4 );mROB.append( cb ); | 327 | mainLayout->addWidget( cb,row,4 );mROB.append( cb ); |
314 | cb->setChecked( kkf->isReadOnly ); | 328 | cb->setChecked( kkf->isReadOnly ); |
315 | cb->setNum( kkf->mCalNumber ); | 329 | cb->setNum( kkf->mCalNumber ); |
316 | connect (cb, SIGNAL (selectNum(int,bool)), SLOT ( selectReadOnly(int,bool) ) ); | 330 | connect (cb, SIGNAL (selectNum(int,bool)), SLOT ( selectReadOnly(int,bool) ) ); |
331 | if ( kkf->mErrorOnLoad ) | ||
332 | cb->setEnabled( false ); | ||
317 | KColorButton *colb = new KColorButton( mw ); | 333 | KColorButton *colb = new KColorButton( mw ); |
318 | mainLayout->addWidget( colb,row,5 ); | 334 | mainLayout->addWidget( colb,row,5 ); |
319 | colb->setID( kkf->mCalNumber ); | 335 | colb->setID( kkf->mCalNumber ); |
320 | colb->setColor( kkf->mDefaultColor ); | 336 | colb->setColor( kkf->mDefaultColor ); |
321 | connect (colb, SIGNAL (changedID(const QColor&, int )), SLOT ( setColor(const QColor&,int) ) ); | 337 | connect (colb, SIGNAL (changedID(const QColor&, int )), SLOT ( setColor(const QColor&,int) ) ); |
322 | if ( row > 1) { | 338 | if ( row > 1) { |
323 | KOCalButton* calb = new KOCalButton( mw ); | 339 | KOCalButton* calb = new KOCalButton( mw ); |
324 | mainLayout->addWidget( calb,row,6 ); | 340 | mainLayout->addWidget( calb,row,6 ); |
325 | calb->setNum( kkf->mCalNumber ); | 341 | calb->setNum( kkf->mCalNumber ); |
326 | calb->setPixmap ( SmallIcon("minus")); | 342 | calb->setPixmap ( SmallIcon("minus")); |
327 | connect (calb, SIGNAL (selectNum(int)), SLOT ( deleteCal(int) ) ); | 343 | connect (calb, SIGNAL (selectNum(int)), SLOT ( deleteCal(int) ) ); |
328 | int hei = calb->sizeHint().height(); | 344 | int hei = calb->sizeHint().height(); |
329 | //calb->setMaximumSize( hei*9/10, hei*9/10 ); | 345 | //calb->setMaximumSize( hei*9/10, hei*9/10 ); |
330 | } | 346 | } |
331 | ++row; | 347 | ++row; |
332 | kkf = KOPrefs::instance()->mCalendars.next(); | 348 | kkf = KOPrefs::instance()->mCalendars.next(); |
333 | } | 349 | } |
334 | lab = new QLabel ( "", mw ); | 350 | lab = new QLabel ( "", mw ); |
335 | mainLayout->addWidget( lab,row,0 ); | 351 | mainLayout->addWidget( lab,row,0 ); |
336 | mw->show(); | 352 | mw->show(); |
337 | 353 | ||
338 | } | 354 | } |
339 | void KOCalEditView::addCal() | 355 | void KOCalEditView::addCal() |
340 | { | 356 | { |
341 | qDebug("addcal "); | 357 | qDebug("addcal "); |
342 | KONewCalPrefs prefs ( this ); | 358 | KONewCalPrefs prefs ( this ); |
343 | if ( ! prefs.exec() ) | 359 | if ( ! prefs.exec() ) |
344 | return; | 360 | return; |
345 | QString name = prefs.calName(); | 361 | QString name = prefs.calName(); |
346 | QString file = prefs.calFileName(); | 362 | QString file = prefs.calFileName(); |
347 | QFileInfo fi ( file ); | 363 | QFileInfo fi ( file ); |
348 | if (!fi.exists() ) { | 364 | if (!fi.exists() ) { |
349 | KMessageBox::information( this, i18n("File does not exist!\nNo calendar added!")); | 365 | KMessageBox::information( this, i18n("File does not exist!\nNo calendar added!")); |
350 | return; | 366 | return; |
351 | } | 367 | } |
352 | KopiCalendarFile * kkf = KOPrefs::instance()->getNewCalendar(); | 368 | KopiCalendarFile * kkf = KOPrefs::instance()->getNewCalendar(); |
353 | kkf->mName = name; | 369 | kkf->mName = name; |
354 | kkf->mFileName = file; | 370 | kkf->mFileName = file; |
355 | emit calendarAdded( kkf->mCalNumber ); | 371 | emit calendarAdded( kkf->mCalNumber ); |
356 | readConfig(); | 372 | readConfig(); |
357 | emit needsUpdate(); | 373 | emit needsUpdate(); |
358 | } | 374 | } |
359 | void KOCalEditView::enableAll() | 375 | void KOCalEditView::enableAll() |
360 | { | 376 | { |
361 | toggleList( mEnabledB ); | 377 | toggleList( mEnabledB ); |
362 | } | 378 | } |
363 | void KOCalEditView::enableAlarm() | 379 | void KOCalEditView::enableAlarm() |
364 | { | 380 | { |
365 | toggleList( mAlarmB ); | 381 | toggleList( mAlarmB ); |
366 | } | 382 | } |
367 | void KOCalEditView::disableRO() | 383 | void KOCalEditView::disableRO() |
368 | { | 384 | { |
369 | toggleList( mROB ); | 385 | toggleList( mROB ); |
370 | } | 386 | } |
371 | void KOCalEditView::toggleList ( QPtrList<KOCalCheckButton> list ) | 387 | void KOCalEditView::toggleList ( QPtrList<KOCalCheckButton> list ) |
372 | { | 388 | { |
373 | bool dis = false; | 389 | bool dis = false; |
374 | KOCalCheckButton* it = list.first(); | 390 | KOCalCheckButton* it = list.first(); |
375 | while ( it ) { | 391 | while ( it ) { |
376 | if ( !it->isChecked() ) { | 392 | if ( !it->isChecked() ) { |
377 | dis = true; | 393 | dis = true; |
378 | break; | 394 | break; |
379 | } | 395 | } |
380 | it = list.next(); | 396 | it = list.next(); |
381 | } | 397 | } |
382 | it = list.first(); | 398 | it = list.first(); |
383 | while ( it ) { | 399 | while ( it ) { |
384 | it->setChecked(dis); | 400 | it->setChecked(dis); |
385 | it = list.next(); | 401 | it = list.next(); |
386 | } | 402 | } |
387 | } | 403 | } |
388 | void KOCalEditView::deleteAll() | 404 | void KOCalEditView::deleteAll() |
389 | { | 405 | { |
390 | qDebug("delteAll"); | 406 | qDebug("delteAll"); |
391 | } | 407 | } |
diff --git a/korganizer/koprefs.h b/korganizer/koprefs.h index f114d88..463fc33 100644 --- a/korganizer/koprefs.h +++ b/korganizer/koprefs.h | |||
@@ -1,352 +1,355 @@ | |||
1 | /* | 1 | /* |
2 | This file is part of KOrganizer. | 2 | This file is part of KOrganizer. |
3 | Copyright (c) 2000,2001 Cornelius Schumacher <schumacher@kde.org> | 3 | Copyright (c) 2000,2001 Cornelius Schumacher <schumacher@kde.org> |
4 | 4 | ||
5 | This program is free software; you can redistribute it and/or modify | 5 | This program is free software; you can redistribute it and/or modify |
6 | it under the terms of the GNU General Public License as published by | 6 | it under the terms of the GNU General Public License as published by |
7 | the Free Software Foundation; either version 2 of the License, or | 7 | the Free Software Foundation; either version 2 of the License, or |
8 | (at your option) any later version. | 8 | (at your option) any later version. |
9 | 9 | ||
10 | This program is distributed in the hope that it will be useful, | 10 | This program is distributed in the hope that it will be useful, |
11 | but WITHOUT ANY WARRANTY; without even the implied warranty of | 11 | but WITHOUT ANY WARRANTY; without even the implied warranty of |
12 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | 12 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
13 | GNU General Public License for more details. | 13 | GNU General Public License for more details. |
14 | 14 | ||
15 | You should have received a copy of the GNU General Public License | 15 | You should have received a copy of the GNU General Public License |
16 | along with this program; if not, write to the Free Software | 16 | along with this program; if not, write to the Free Software |
17 | Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. | 17 | Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. |
18 | 18 | ||
19 | As a special exception, permission is given to link this program | 19 | As a special exception, permission is given to link this program |
20 | with any edition of Qt, and distribute the resulting executable, | 20 | with any edition of Qt, and distribute the resulting executable, |
21 | without including the source code for Qt in the source distribution. | 21 | without including the source code for Qt in the source distribution. |
22 | */ | 22 | */ |
23 | #ifndef KOPREFS_H | 23 | #ifndef KOPREFS_H |
24 | #define KOPREFS_H | 24 | #define KOPREFS_H |
25 | 25 | ||
26 | 26 | ||
27 | #include <libkdepim/kpimprefs.h> | 27 | #include <libkdepim/kpimprefs.h> |
28 | #include <qdict.h> | 28 | #include <qdict.h> |
29 | #include <qdir.h> | 29 | #include <qdir.h> |
30 | #include <qobject.h> | 30 | #include <qobject.h> |
31 | 31 | ||
32 | class KConfig; | 32 | class KConfig; |
33 | class QFont; | 33 | class QFont; |
34 | class QColor; | 34 | class QColor; |
35 | class QStringList; | 35 | class QStringList; |
36 | 36 | ||
37 | #define VIEW_WN_VIEW 1 | 37 | #define VIEW_WN_VIEW 1 |
38 | #define VIEW_NX_VIEW 2 | 38 | #define VIEW_NX_VIEW 2 |
39 | #define VIEW_J_VIEW 3 | 39 | #define VIEW_J_VIEW 3 |
40 | #define VIEW_A_VIEW 4 | 40 | #define VIEW_A_VIEW 4 |
41 | #define VIEW_ML_VIEW 5 | 41 | #define VIEW_ML_VIEW 5 |
42 | #define VIEW_M_VIEW 6 | 42 | #define VIEW_M_VIEW 6 |
43 | #define VIEW_L_VIEW 7 | 43 | #define VIEW_L_VIEW 7 |
44 | #define VIEW_T_VIEW 8 | 44 | #define VIEW_T_VIEW 8 |
45 | 45 | ||
46 | class KopiCalendarFile : public QObject | 46 | class KopiCalendarFile : public QObject |
47 | { | 47 | { |
48 | public: | 48 | public: |
49 | KopiCalendarFile( ) : QObject( ) | 49 | KopiCalendarFile( ) : QObject( ) |
50 | { | 50 | { |
51 | isStandard = false; | 51 | isStandard = false; |
52 | isEnabled = true; | 52 | isEnabled = true; |
53 | isAlarmEnabled = true; | 53 | isAlarmEnabled = true; |
54 | isReadOnly = false; | 54 | isReadOnly = false; |
55 | mName = "Calendar"; | 55 | mName = "Calendar"; |
56 | mFileName = QDir::homeDirPath() + "/icalfile.ics"; | 56 | mFileName = QDir::homeDirPath() + "/icalfile.ics"; |
57 | mCalNumber = 0; | 57 | mCalNumber = 0; |
58 | mDefaultColor = Qt::red; | 58 | mDefaultColor = Qt::red; |
59 | mErrorOnLoad = false; | ||
59 | } | 60 | } |
60 | bool isStandard; | 61 | bool isStandard; |
61 | bool isEnabled; | 62 | bool isEnabled; |
62 | bool isAlarmEnabled; | 63 | bool isAlarmEnabled; |
63 | bool isReadOnly; | 64 | bool isReadOnly; |
65 | bool mErrorOnLoad; | ||
64 | QString mName; | 66 | QString mName; |
65 | QString mFileName; | 67 | QString mFileName; |
66 | int mCalNumber; | 68 | int mCalNumber; |
67 | QColor mDefaultColor; | 69 | QColor mDefaultColor; |
70 | QDateTime mLoadDt; | ||
68 | }; | 71 | }; |
69 | class KOPrefs : public KPimPrefs | 72 | class KOPrefs : public KPimPrefs |
70 | { | 73 | { |
71 | public: | 74 | public: |
72 | enum { FormatVCalendar, FormatICalendar }; | 75 | enum { FormatVCalendar, FormatICalendar }; |
73 | enum { MailClientKMail, MailClientSendmail }; | 76 | enum { MailClientKMail, MailClientSendmail }; |
74 | enum { IMIPDummy, IMIPKMail }; | 77 | enum { IMIPDummy, IMIPKMail }; |
75 | enum { IMIPOutbox, IMIPdirectsend }; | 78 | enum { IMIPOutbox, IMIPdirectsend }; |
76 | enum { neverAuto, addressbookAuto, selectedAuto }; | 79 | enum { neverAuto, addressbookAuto, selectedAuto }; |
77 | enum { standardDestination, askDestination }; | 80 | enum { standardDestination, askDestination }; |
78 | 81 | ||
79 | virtual ~KOPrefs(); | 82 | virtual ~KOPrefs(); |
80 | 83 | ||
81 | /** Get instance of KOPrefs. It is made sure that there is only one | 84 | /** Get instance of KOPrefs. It is made sure that there is only one |
82 | instance. */ | 85 | instance. */ |
83 | static KOPrefs *instance(); | 86 | static KOPrefs *instance(); |
84 | 87 | ||
85 | /** Set preferences to default values */ | 88 | /** Set preferences to default values */ |
86 | void usrSetDefaults(); | 89 | void usrSetDefaults(); |
87 | 90 | ||
88 | /** Read preferences from config file */ | 91 | /** Read preferences from config file */ |
89 | void usrReadConfig(); | 92 | void usrReadConfig(); |
90 | 93 | ||
91 | /** Write preferences to config file */ | 94 | /** Write preferences to config file */ |
92 | void usrWriteConfig(); | 95 | void usrWriteConfig(); |
93 | void setCategoryDefaults(); | 96 | void setCategoryDefaults(); |
94 | void setAllDefaults(); | 97 | void setAllDefaults(); |
95 | KopiCalendarFile * getNewCalendar(); | 98 | KopiCalendarFile * getNewCalendar(); |
96 | KopiCalendarFile * getCalendar( int ); | 99 | KopiCalendarFile * getCalendar( int ); |
97 | void deleteCalendar( int ); | 100 | void deleteCalendar( int ); |
98 | QColor defaultColor( int ) const; | 101 | QColor defaultColor( int ) const; |
99 | protected: | 102 | protected: |
100 | void setTimeZoneIdDefault(); | 103 | void setTimeZoneIdDefault(); |
101 | 104 | ||
102 | /** Fill empty mail fields with default values. */ | 105 | /** Fill empty mail fields with default values. */ |
103 | void fillMailDefaults(); | 106 | void fillMailDefaults(); |
104 | 107 | ||
105 | private: | 108 | private: |
106 | /** Constructor disabled for public. Use instance() to create a KOPrefs | 109 | /** Constructor disabled for public. Use instance() to create a KOPrefs |
107 | object. */ | 110 | object. */ |
108 | KOPrefs(); | 111 | KOPrefs(); |
109 | 112 | ||
110 | static KOPrefs *mInstance; | 113 | static KOPrefs *mInstance; |
111 | QStringList getDefaultList(); | 114 | QStringList getDefaultList(); |
112 | QStringList getLocationDefaultList(); | 115 | QStringList getLocationDefaultList(); |
113 | public: | 116 | public: |
114 | // preferences data | 117 | // preferences data |
115 | KConfig* getConfig(); | 118 | KConfig* getConfig(); |
116 | void setFullName(const QString &); | 119 | void setFullName(const QString &); |
117 | QString fullName(); | 120 | QString fullName(); |
118 | void setEmail(const QString &); | 121 | void setEmail(const QString &); |
119 | QString email(); | 122 | QString email(); |
120 | 123 | ||
121 | QString mAdditional; | 124 | QString mAdditional; |
122 | 125 | ||
123 | bool mEmailControlCenter; | 126 | bool mEmailControlCenter; |
124 | 127 | ||
125 | bool mBcc; | 128 | bool mBcc; |
126 | bool mAutoSave; | 129 | bool mAutoSave; |
127 | int mAutoSaveInterval; | 130 | int mAutoSaveInterval; |
128 | bool mConfirm; | 131 | bool mConfirm; |
129 | 132 | ||
130 | bool mEnableGroupScheduling; | 133 | bool mEnableGroupScheduling; |
131 | bool mEnableProjectView; | 134 | bool mEnableProjectView; |
132 | 135 | ||
133 | int mDefaultFormat; | 136 | int mDefaultFormat; |
134 | int mMailClient; | 137 | int mMailClient; |
135 | 138 | ||
136 | int mStartTime; | 139 | int mStartTime; |
137 | int mDefaultDuration; | 140 | int mDefaultDuration; |
138 | int mAlarmTime; | 141 | int mAlarmTime; |
139 | 142 | ||
140 | int mWorkingHoursStart; | 143 | int mWorkingHoursStart; |
141 | int mWorkingHoursEnd; | 144 | int mWorkingHoursEnd; |
142 | bool mExcludeHolidays; | 145 | bool mExcludeHolidays; |
143 | bool mExcludeSaturdays; | 146 | bool mExcludeSaturdays; |
144 | bool mMarcusBainsShowSeconds; | 147 | bool mMarcusBainsShowSeconds; |
145 | 148 | ||
146 | QFont mTimeBarFont; | 149 | QFont mTimeBarFont; |
147 | QFont mMonthViewFont; | 150 | QFont mMonthViewFont; |
148 | QFont mAgendaViewFont; | 151 | QFont mAgendaViewFont; |
149 | QFont mMarcusBainsFont; | 152 | QFont mMarcusBainsFont; |
150 | QFont mTimeLabelsFont; | 153 | QFont mTimeLabelsFont; |
151 | QFont mTodoViewFont; | 154 | QFont mTodoViewFont; |
152 | QFont mListViewFont; | 155 | QFont mListViewFont; |
153 | QFont mDateNavigatorFont; | 156 | QFont mDateNavigatorFont; |
154 | QFont mEditBoxFont; | 157 | QFont mEditBoxFont; |
155 | QFont mJornalViewFont; | 158 | QFont mJornalViewFont; |
156 | QFont mWhatsNextFont; | 159 | QFont mWhatsNextFont; |
157 | QFont mEventViewFont; | 160 | QFont mEventViewFont; |
158 | 161 | ||
159 | 162 | ||
160 | 163 | ||
161 | 164 | ||
162 | QColor mHolidayColor; | 165 | QColor mHolidayColor; |
163 | QColor mHighlightColor; | 166 | QColor mHighlightColor; |
164 | QColor mEventColor; | 167 | QColor mEventColor; |
165 | QColor mTodoDoneColor; | 168 | QColor mTodoDoneColor; |
166 | QColor mAgendaBgColor; | 169 | QColor mAgendaBgColor; |
167 | QColor mWorkingHoursColor; | 170 | QColor mWorkingHoursColor; |
168 | QColor mTodoDueTodayColor; | 171 | QColor mTodoDueTodayColor; |
169 | QColor mTodoOverdueColor; | 172 | QColor mTodoOverdueColor; |
170 | QColor mTodoRunColor; | 173 | QColor mTodoRunColor; |
171 | QColor mMonthViewEvenColor; | 174 | QColor mMonthViewEvenColor; |
172 | QColor mMonthViewOddColor; | 175 | QColor mMonthViewOddColor; |
173 | QColor mMonthViewHolidayColor; | 176 | QColor mMonthViewHolidayColor; |
174 | bool mMonthViewUsesDayColors; | 177 | bool mMonthViewUsesDayColors; |
175 | bool mMonthViewSatSunTog; | 178 | bool mMonthViewSatSunTog; |
176 | bool mMonthViewWeek; | 179 | bool mMonthViewWeek; |
177 | QColor mAppColor1; | 180 | QColor mAppColor1; |
178 | QColor mAppColor2; | 181 | QColor mAppColor2; |
179 | bool mUseAppColors; | 182 | bool mUseAppColors; |
180 | 183 | ||
181 | int mDayBegins; | 184 | int mDayBegins; |
182 | int mHourSize; | 185 | int mHourSize; |
183 | int mAllDaySize; | 186 | int mAllDaySize; |
184 | bool mShowFullMenu; | 187 | bool mShowFullMenu; |
185 | bool mDailyRecur; | 188 | bool mDailyRecur; |
186 | bool mWeeklyRecur; | 189 | bool mWeeklyRecur; |
187 | bool mMonthDailyRecur; | 190 | bool mMonthDailyRecur; |
188 | bool mMonthWeeklyRecur; | 191 | bool mMonthWeeklyRecur; |
189 | bool mMonthShowIcons; | 192 | bool mMonthShowIcons; |
190 | bool mMonthShowTimes; | 193 | bool mMonthShowTimes; |
191 | bool mMonthShowShort; | 194 | bool mMonthShowShort; |
192 | bool mEnableToolTips; | 195 | bool mEnableToolTips; |
193 | bool mEnableMonthScroll; | 196 | bool mEnableMonthScroll; |
194 | bool mFullViewMonth; | 197 | bool mFullViewMonth; |
195 | bool mMonthViewUsesCategoryColor; | 198 | bool mMonthViewUsesCategoryColor; |
196 | bool mFullViewTodo; | 199 | bool mFullViewTodo; |
197 | bool mShowCompletedTodo; | 200 | bool mShowCompletedTodo; |
198 | bool mMarcusBainsEnabled; | 201 | bool mMarcusBainsEnabled; |
199 | int mNextXDays; | 202 | int mNextXDays; |
200 | int mWhatsNextDays; | 203 | int mWhatsNextDays; |
201 | int mWhatsNextPrios; | 204 | int mWhatsNextPrios; |
202 | bool mEnableQuickTodo; | 205 | bool mEnableQuickTodo; |
203 | 206 | ||
204 | bool mCompactDialogs; | 207 | bool mCompactDialogs; |
205 | bool mVerticalScreen; | 208 | bool mVerticalScreen; |
206 | 209 | ||
207 | bool mShowIconNewTodo; | 210 | bool mShowIconNewTodo; |
208 | bool mShowIconNewEvent; | 211 | bool mShowIconNewEvent; |
209 | bool mShowIconSearch; | 212 | bool mShowIconSearch; |
210 | bool mShowIconList; | 213 | bool mShowIconList; |
211 | bool mShowIconDay1; | 214 | bool mShowIconDay1; |
212 | bool mShowIconDay5; | 215 | bool mShowIconDay5; |
213 | bool mShowIconDay6; | 216 | bool mShowIconDay6; |
214 | bool mShowIconDay7; | 217 | bool mShowIconDay7; |
215 | bool mShowIconMonth; | 218 | bool mShowIconMonth; |
216 | bool mShowIconTodoview; | 219 | bool mShowIconTodoview; |
217 | bool mShowIconBackFast; | 220 | bool mShowIconBackFast; |
218 | bool mShowIconBack; | 221 | bool mShowIconBack; |
219 | bool mShowIconToday; | 222 | bool mShowIconToday; |
220 | bool mShowIconForward; | 223 | bool mShowIconForward; |
221 | bool mShowIconForwardFast; | 224 | bool mShowIconForwardFast; |
222 | bool mShowIconWhatsThis; | 225 | bool mShowIconWhatsThis; |
223 | bool mShowIconWeekNum; | 226 | bool mShowIconWeekNum; |
224 | bool mShowIconNextDays; | 227 | bool mShowIconNextDays; |
225 | bool mShowIconNext; | 228 | bool mShowIconNext; |
226 | bool mShowIconJournal; | 229 | bool mShowIconJournal; |
227 | bool mShowIconFilter; | 230 | bool mShowIconFilter; |
228 | bool mShowIconOnetoolbar; | 231 | bool mShowIconOnetoolbar; |
229 | bool mShowIconNavigator; | 232 | bool mShowIconNavigator; |
230 | bool mShowIconAllday; | 233 | bool mShowIconAllday; |
231 | bool mShowIconFilterview; | 234 | bool mShowIconFilterview; |
232 | bool mShowIconToggleFull; | 235 | bool mShowIconToggleFull; |
233 | 236 | ||
234 | bool mShowIconStretch; | 237 | bool mShowIconStretch; |
235 | 238 | ||
236 | bool mToolBarHor; | 239 | bool mToolBarHor; |
237 | bool mToolBarUp; | 240 | bool mToolBarUp; |
238 | bool mToolBarHorV; | 241 | bool mToolBarHorV; |
239 | bool mToolBarUpV; | 242 | bool mToolBarUpV; |
240 | bool mToolBarHorN; | 243 | bool mToolBarHorN; |
241 | bool mToolBarUpN; | 244 | bool mToolBarUpN; |
242 | bool mToolBarHorF; | 245 | bool mToolBarHorF; |
243 | bool mToolBarUpF; | 246 | bool mToolBarUpF; |
244 | bool mToolBarMiniIcons; | 247 | bool mToolBarMiniIcons; |
245 | 248 | ||
246 | bool mAskForQuit; | 249 | bool mAskForQuit; |
247 | bool mUsePassWd; | 250 | bool mUsePassWd; |
248 | bool mShowSyncEvents; | 251 | bool mShowSyncEvents; |
249 | bool mShowTodoInAgenda; | 252 | bool mShowTodoInAgenda; |
250 | bool mShowCompletedTodoInAgenda; | 253 | bool mShowCompletedTodoInAgenda; |
251 | bool mShowTimeInAgenda; | 254 | bool mShowTimeInAgenda; |
252 | bool mHideNonStartedTodos; | 255 | bool mHideNonStartedTodos; |
253 | 256 | ||
254 | bool mBlockPopupMenu; | 257 | bool mBlockPopupMenu; |
255 | 258 | ||
256 | int mLastSyncTime; | 259 | int mLastSyncTime; |
257 | void setCategoryColor(QString cat,const QColor & color); | 260 | void setCategoryColor(QString cat,const QColor & color); |
258 | QColor *categoryColor(QString cat); | 261 | QColor *categoryColor(QString cat); |
259 | 262 | ||
260 | QString mArchiveFile; | 263 | QString mArchiveFile; |
261 | QString mHtmlExportFile; | 264 | QString mHtmlExportFile; |
262 | bool mHtmlWithSave; | 265 | bool mHtmlWithSave; |
263 | 266 | ||
264 | QStringList mSelectedPlugins; | 267 | QStringList mSelectedPlugins; |
265 | 268 | ||
266 | QString mLastImportFile; | 269 | QString mLastImportFile; |
267 | QString mLastVcalFile; | 270 | QString mLastVcalFile; |
268 | QString mLastSaveFile; | 271 | QString mLastSaveFile; |
269 | QString mLastLoadFile; | 272 | QString mLastLoadFile; |
270 | 273 | ||
271 | 274 | ||
272 | QString mDefaultAlarmFile; | 275 | QString mDefaultAlarmFile; |
273 | int mIMIPScheduler; | 276 | int mIMIPScheduler; |
274 | int mIMIPSend; | 277 | int mIMIPSend; |
275 | QStringList mAdditionalMails; | 278 | QStringList mAdditionalMails; |
276 | int mIMIPAutoRefresh; | 279 | int mIMIPAutoRefresh; |
277 | int mIMIPAutoInsertReply; | 280 | int mIMIPAutoInsertReply; |
278 | int mIMIPAutoInsertRequest; | 281 | int mIMIPAutoInsertRequest; |
279 | int mIMIPAutoFreeBusy; | 282 | int mIMIPAutoFreeBusy; |
280 | int mIMIPAutoFreeBusyReply; | 283 | int mIMIPAutoFreeBusyReply; |
281 | 284 | ||
282 | QStringList mTodoTemplates; | 285 | QStringList mTodoTemplates; |
283 | QStringList mEventTemplates; | 286 | QStringList mEventTemplates; |
284 | 287 | ||
285 | int mDestination; | 288 | int mDestination; |
286 | 289 | ||
287 | 290 | ||
288 | bool mEditOnDoubleClick; | 291 | bool mEditOnDoubleClick; |
289 | bool mViewChangeHoldFullscreen; | 292 | bool mViewChangeHoldFullscreen; |
290 | bool mViewChangeHoldNonFullscreen; | 293 | bool mViewChangeHoldNonFullscreen; |
291 | bool mCenterOnCurrentTime; | 294 | bool mCenterOnCurrentTime; |
292 | bool mSetTimeToDayStartAt; | 295 | bool mSetTimeToDayStartAt; |
293 | bool mHighlightCurrentDay; | 296 | bool mHighlightCurrentDay; |
294 | bool mUseHighlightLightColor; | 297 | bool mUseHighlightLightColor; |
295 | bool mListViewMonthTimespan; | 298 | bool mListViewMonthTimespan; |
296 | bool mWNViewShowsParents; | 299 | bool mWNViewShowsParents; |
297 | bool mWNViewShowsPast; | 300 | bool mWNViewShowsPast; |
298 | bool mWNViewShowLocation; | 301 | bool mWNViewShowLocation; |
299 | bool mTodoViewShowsPercentage; | 302 | bool mTodoViewShowsPercentage; |
300 | bool mTodoViewUsesCatColors; | 303 | bool mTodoViewUsesCatColors; |
301 | bool mMonthViewUsesBigFont; | 304 | bool mMonthViewUsesBigFont; |
302 | bool mTodoViewUsesSmallFont; | 305 | bool mTodoViewUsesSmallFont; |
303 | bool mTodoViewUsesForegroundColor; | 306 | bool mTodoViewUsesForegroundColor; |
304 | bool mMonthViewUsesForegroundColor; | 307 | bool mMonthViewUsesForegroundColor; |
305 | 308 | ||
306 | bool mHightlightDateTimeEdit; | 309 | bool mHightlightDateTimeEdit; |
307 | bool mShortDateInViewer; | 310 | bool mShortDateInViewer; |
308 | 311 | ||
309 | bool mShowDateNavigator; | 312 | bool mShowDateNavigator; |
310 | 313 | ||
311 | QStringList mLocationDefaults; | 314 | QStringList mLocationDefaults; |
312 | QStringList mEventSummaryUser; | 315 | QStringList mEventSummaryUser; |
313 | QStringList mTodoSummaryUser; | 316 | QStringList mTodoSummaryUser; |
314 | 317 | ||
315 | bool mUseInternalAlarmNotification; | 318 | bool mUseInternalAlarmNotification; |
316 | int mAlarmPlayBeeps; | 319 | int mAlarmPlayBeeps; |
317 | int mAlarmSuspendTime; | 320 | int mAlarmSuspendTime; |
318 | int mAlarmSuspendCount; | 321 | int mAlarmSuspendCount; |
319 | int mAlarmBeepInterval; | 322 | int mAlarmBeepInterval; |
320 | int mOldLanguage; | 323 | int mOldLanguage; |
321 | int mOldLoadedLanguage; | 324 | int mOldLoadedLanguage; |
322 | 325 | ||
323 | 326 | ||
324 | QString mActiveSyncPort; | 327 | QString mActiveSyncPort; |
325 | QString mActiveSyncIP; | 328 | QString mActiveSyncIP; |
326 | 329 | ||
327 | // settings for eventviewer | 330 | // settings for eventviewer |
328 | bool mEVshowDetails; | 331 | bool mEVshowDetails; |
329 | bool mEVshowCreated; | 332 | bool mEVshowCreated; |
330 | bool mEVshowChanged; | 333 | bool mEVshowChanged; |
331 | bool mWTshowDetails; | 334 | bool mWTshowDetails; |
332 | bool mWTshowCreated; | 335 | bool mWTshowCreated; |
333 | bool mWTshowChanged; | 336 | bool mWTshowChanged; |
334 | 337 | ||
335 | int mCurrentDisplayedView; | 338 | int mCurrentDisplayedView; |
336 | QPtrList<KopiCalendarFile> mCalendars; | 339 | QPtrList<KopiCalendarFile> mCalendars; |
337 | int mNextAvailableCalendar; | 340 | int mNextAvailableCalendar; |
338 | 341 | ||
339 | private: | 342 | private: |
340 | QDict<QColor> mCategoryColors; | 343 | QDict<QColor> mCategoryColors; |
341 | QArray<KopiCalendarFile*> mDefCalColors; | 344 | QArray<KopiCalendarFile*> mDefCalColors; |
342 | QColor mDefaultCategoryColor; | 345 | QColor mDefaultCategoryColor; |
343 | 346 | ||
344 | QFont mDefaultTimeBarFont; | 347 | QFont mDefaultTimeBarFont; |
345 | QFont mDefaultViewFont; | 348 | QFont mDefaultViewFont; |
346 | QFont mDefaultMonthViewFont; | 349 | QFont mDefaultMonthViewFont; |
347 | 350 | ||
348 | QString mName; | 351 | QString mName; |
349 | QString mEmail; | 352 | QString mEmail; |
350 | }; | 353 | }; |
351 | 354 | ||
352 | #endif | 355 | #endif |
diff --git a/korganizer/mainwindow.cpp b/korganizer/mainwindow.cpp index f05ada5..472a978 100644 --- a/korganizer/mainwindow.cpp +++ b/korganizer/mainwindow.cpp | |||
@@ -1443,789 +1443,797 @@ void MainWindow::kdesynchowto() | |||
1443 | KApplication::showFile( "KDE-Pim/Pi Synchronization HowTo", "kdepim/Zaurus-KDE_syncHowTo.txt" ); | 1443 | KApplication::showFile( "KDE-Pim/Pi Synchronization HowTo", "kdepim/Zaurus-KDE_syncHowTo.txt" ); |
1444 | } | 1444 | } |
1445 | void MainWindow::multisynchowto() | 1445 | void MainWindow::multisynchowto() |
1446 | { | 1446 | { |
1447 | KApplication::showFile( "KDE-Pim/Pi Synchronization HowTo", "kdepim/MultiSyncHowTo.txt" ); | 1447 | KApplication::showFile( "KDE-Pim/Pi Synchronization HowTo", "kdepim/MultiSyncHowTo.txt" ); |
1448 | } | 1448 | } |
1449 | void MainWindow::synchowto() | 1449 | void MainWindow::synchowto() |
1450 | { | 1450 | { |
1451 | KApplication::showFile( "KDE-Pim/Pi Synchronization HowTo", "kdepim/SyncHowto.txt" ); | 1451 | KApplication::showFile( "KDE-Pim/Pi Synchronization HowTo", "kdepim/SyncHowto.txt" ); |
1452 | } | 1452 | } |
1453 | void MainWindow::faq() | 1453 | void MainWindow::faq() |
1454 | { | 1454 | { |
1455 | KApplication::showFile( i18n("KO/Pi FAQ"), "kdepim/korganizer/kopiFAQ.txt" ); | 1455 | KApplication::showFile( i18n("KO/Pi FAQ"), "kdepim/korganizer/kopiFAQ.txt" ); |
1456 | 1456 | ||
1457 | } | 1457 | } |
1458 | void MainWindow::whatsNew() | 1458 | void MainWindow::whatsNew() |
1459 | { | 1459 | { |
1460 | KApplication::showFile( "KDE-Pim/Pi Version Info", "kdepim/WhatsNew.txt" ); | 1460 | KApplication::showFile( "KDE-Pim/Pi Version Info", "kdepim/WhatsNew.txt" ); |
1461 | 1461 | ||
1462 | } | 1462 | } |
1463 | void MainWindow::licence() | 1463 | void MainWindow::licence() |
1464 | { | 1464 | { |
1465 | KApplication::showLicence(); | 1465 | KApplication::showLicence(); |
1466 | 1466 | ||
1467 | } | 1467 | } |
1468 | void MainWindow::about() | 1468 | void MainWindow::about() |
1469 | { | 1469 | { |
1470 | QString version; | 1470 | QString version; |
1471 | #include <../version> | 1471 | #include <../version> |
1472 | QMessageBox::about( this, i18n("About KOrganizer/Pi"), | 1472 | QMessageBox::about( this, i18n("About KOrganizer/Pi"), |
1473 | i18n("KOrganizer/Platform-independent\n") + | 1473 | i18n("KOrganizer/Platform-independent\n") + |
1474 | "(KO/Pi) " + version + " - " + | 1474 | "(KO/Pi) " + version + " - " + |
1475 | 1475 | ||
1476 | #ifdef DESKTOP_VERSION | 1476 | #ifdef DESKTOP_VERSION |
1477 | i18n("Desktop Edition\n") + | 1477 | i18n("Desktop Edition\n") + |
1478 | #else | 1478 | #else |
1479 | i18n("PDA-Edition\nfor: Zaurus 5x00/7x0/860/3000/6000\n") + | 1479 | i18n("PDA-Edition\nfor: Zaurus 5x00/7x0/860/3000/6000\n") + |
1480 | #endif | 1480 | #endif |
1481 | i18n("(c)2004 Lutz Rogowski (rogowski@kde.org)\nKO/Pi is based on KOrganizer\n(c)2002,2003 Cornelius Schumacher\n(schumacher@kde.org) and the KDE team.\nKOrganizer/Pi is licensed under the GPL.\nKO/Pi can be compiled for\nLinux, Zaurus-PDA and Windows\nwww.pi-sync.info --- www.korganizer.org\nSpecial thanks to Michael and Ben\nfor intensive testing!") ); | 1481 | i18n("(c)2004 Lutz Rogowski (rogowski@kde.org)\nKO/Pi is based on KOrganizer\n(c)2002,2003 Cornelius Schumacher\n(schumacher@kde.org) and the KDE team.\nKOrganizer/Pi is licensed under the GPL.\nKO/Pi can be compiled for\nLinux, Zaurus-PDA and Windows\nwww.pi-sync.info --- www.korganizer.org\nSpecial thanks to Michael and Ben\nfor intensive testing!") ); |
1482 | } | 1482 | } |
1483 | void MainWindow::keyBindings() | 1483 | void MainWindow::keyBindings() |
1484 | { | 1484 | { |
1485 | QString cap = i18n("KO/Pi Keys + Colors"); | 1485 | QString cap = i18n("KO/Pi Keys + Colors"); |
1486 | QString text = i18n("<p><h2>KO/Pi key shortcuts:</h2></p>\n") + | 1486 | QString text = i18n("<p><h2>KO/Pi key shortcuts:</h2></p>\n") + |
1487 | i18n("<p><b>H</b>: This help dialog | <b>S</b>: Search dialog</p>\n")+ | 1487 | i18n("<p><b>H</b>: This help dialog | <b>S</b>: Search dialog</p>\n")+ |
1488 | i18n("<p><b>N</b>: Switch to next view which has a toolbar icon</p>\n") + | 1488 | i18n("<p><b>N</b>: Switch to next view which has a toolbar icon</p>\n") + |
1489 | i18n("<p><b>A+(shift or ctrl)</b>: Show occurence of next alarm</p>\n") + | 1489 | i18n("<p><b>A+(shift or ctrl)</b>: Show occurence of next alarm</p>\n") + |
1490 | i18n("<p><b>I</b>: Show info for selected event/todo</p>\n") + | 1490 | i18n("<p><b>I</b>: Show info for selected event/todo</p>\n") + |
1491 | i18n("<p><b>Space</b>: Toggle fullscreen | <b>P</b>: Date picker</p>\n")+ | 1491 | i18n("<p><b>Space</b>: Toggle fullscreen | <b>P</b>: Date picker</p>\n")+ |
1492 | i18n("<p><b>R</b>: Toggle Resource View |<b>F</b>: Edit filter </p>\n")+ | 1492 | i18n("<p><b>R</b>: Toggle Resource View |<b>F</b>: Edit filter </p>\n")+ |
1493 | i18n("<p><b>O</b>: Filter On/Off | <b>J</b>: Journal view</p>\n")+ | 1493 | i18n("<p><b>O</b>: Filter On/Off | <b>J</b>: Journal view</p>\n")+ |
1494 | i18n("<p><b>1-0</b> (+<b>ctrl</b>): Select filter 1-10 (11-20)</p>\n")+ | 1494 | i18n("<p><b>1-0</b> (+<b>ctrl</b>): Select filter 1-10 (11-20)</p>\n")+ |
1495 | i18n("<p><b>X</b>: Next X days view| <b>W</b>: What's next view\n ")+ | 1495 | i18n("<p><b>X</b>: Next X days view| <b>W</b>: What's next view\n ")+ |
1496 | i18n("<p><b>V</b>: Todo view | <b>L</b>: Event list view</p>\n")+ | 1496 | i18n("<p><b>V</b>: Todo view | <b>L</b>: Event list view</p>\n")+ |
1497 | i18n("<p><b>Z,Y</b>: Work week view | <b>U</b>: Week view</p>\n")+ | 1497 | i18n("<p><b>Z,Y</b>: Work week view | <b>U</b>: Week view</p>\n")+ |
1498 | i18n("<p><b>D</b>: One day view | <b>M</b>: Month view</p>\n")+ | 1498 | i18n("<p><b>D</b>: One day view | <b>M</b>: Month view</p>\n")+ |
1499 | i18n("<p><b>K</b>: Week view in Month view syle</p>\n")+ | 1499 | i18n("<p><b>K</b>: Week view in Month view syle</p>\n")+ |
1500 | i18n("<p><b>E</b>: Edit selected item |<b> E+ctrl</b>: New Event</p>\n")+ | 1500 | i18n("<p><b>E</b>: Edit selected item |<b> E+ctrl</b>: New Event</p>\n")+ |
1501 | i18n("<p><b>T</b>: Goto today | <b>T+ctrl</b>: New Todo</p>\n")+ | 1501 | i18n("<p><b>T</b>: Goto today | <b>T+ctrl</b>: New Todo</p>\n")+ |
1502 | i18n("<p><b>S+ctrl</b>: Add sub-todo | <b>X+ctrl</b>: Toggle datenavigator</p>\n")+ | 1502 | i18n("<p><b>S+ctrl</b>: Add sub-todo | <b>X+ctrl</b>: Toggle datenavigator</p>\n")+ |
1503 | i18n("<p><b>+,-</b> : Zoom in/out agenda | <b>A</b>: Toggle allday agenda height</p>\n")+ | 1503 | i18n("<p><b>+,-</b> : Zoom in/out agenda | <b>A</b>: Toggle allday agenda height</p>\n")+ |
1504 | i18n("<p><b>C</b>: Show current time in agenda view</p>\n")+ | 1504 | i18n("<p><b>C</b>: Show current time in agenda view</p>\n")+ |
1505 | i18n("<p><b>B</b>: Edit description (details) of selected item</p>\n")+ | 1505 | i18n("<p><b>B</b>: Edit description (details) of selected item</p>\n")+ |
1506 | i18n("<p><b>right</b>: Next week | <b>right+ctrl</b>: Next month</p>\n")+ | 1506 | i18n("<p><b>right</b>: Next week | <b>right+ctrl</b>: Next month</p>\n")+ |
1507 | i18n("<p><b>left</b>: Prev. week | <b>left+ctrl</b>: Prev. month</p>\n")+ | 1507 | i18n("<p><b>left</b>: Prev. week | <b>left+ctrl</b>: Prev. month</p>\n")+ |
1508 | i18n("<p><b>del,backspace</b>: Delete selected item</p>\n")+ | 1508 | i18n("<p><b>del,backspace</b>: Delete selected item</p>\n")+ |
1509 | i18n("<p><h3>In agenda view:</h3></p>\n") + | 1509 | i18n("<p><h3>In agenda view:</h3></p>\n") + |
1510 | i18n("<p><b>up/down</b>: Scroll agenda view</p>\n")+ | 1510 | i18n("<p><b>up/down</b>: Scroll agenda view</p>\n")+ |
1511 | i18n("<p><b>ctrl+up/down</b>: Scroll small todo view</p>\n")+ | 1511 | i18n("<p><b>ctrl+up/down</b>: Scroll small todo view</p>\n")+ |
1512 | i18n("<p><h3>In todo view:</h3></p>\n") + | 1512 | i18n("<p><h3>In todo view:</h3></p>\n") + |
1513 | i18n("<p><b>shift+U</b>: <b>U</b>nparent todo (make root todo)</p>\n")+ | 1513 | i18n("<p><b>shift+U</b>: <b>U</b>nparent todo (make root todo)</p>\n")+ |
1514 | i18n("<p><b>shift+S</b>: Make <b>S</b>ubtodo (reparent todo)</p>\n")+ | 1514 | i18n("<p><b>shift+S</b>: Make <b>S</b>ubtodo (reparent todo)</p>\n")+ |
1515 | i18n("<p><b>shift+P</b>: Make new <b>P</b>arent for todo selected with shift+S</p>\n")+ | 1515 | i18n("<p><b>shift+P</b>: Make new <b>P</b>arent for todo selected with shift+S</p>\n")+ |
1516 | i18n("<p><b>Q</b>: Toggle quick todo line edit.</p>\n")+ | 1516 | i18n("<p><b>Q</b>: Toggle quick todo line edit.</p>\n")+ |
1517 | i18n("<p><b>I</b>: Show info of current item+one step down.</p>\n")+ | 1517 | i18n("<p><b>I</b>: Show info of current item+one step down.</p>\n")+ |
1518 | i18n("<p><b>return</b>: Mark item as completed+one step down.</p>\n")+ | 1518 | i18n("<p><b>return</b>: Mark item as completed+one step down.</p>\n")+ |
1519 | i18n("<p><b>return+shift</b>: Mark item as not completed+one step down</p>\n")+ | 1519 | i18n("<p><b>return+shift</b>: Mark item as not completed+one step down</p>\n")+ |
1520 | i18n("<p><h3>In list view:</h3></p>\n") + | 1520 | i18n("<p><h3>In list view:</h3></p>\n") + |
1521 | i18n("<p><b>I</b>: Show info of current item+one step down.</p>\n")+ | 1521 | i18n("<p><b>I</b>: Show info of current item+one step down.</p>\n")+ |
1522 | i18n("<p><b>return</b>: Select item+one step down</p>\n")+ | 1522 | i18n("<p><b>return</b>: Select item+one step down</p>\n")+ |
1523 | i18n("<p><b>return+shift</b>: Deselect item+one step down</p>\n")+ | 1523 | i18n("<p><b>return+shift</b>: Deselect item+one step down</p>\n")+ |
1524 | i18n("<p><b>up/down</b>: Next/prev item</p>\n")+ | 1524 | i18n("<p><b>up/down</b>: Next/prev item</p>\n")+ |
1525 | i18n("<p><b>ctrl+up/down</b>: Goto up/down by 20% of items</p>\n")+ | 1525 | i18n("<p><b>ctrl+up/down</b>: Goto up/down by 20% of items</p>\n")+ |
1526 | i18n("<p><b>shift+up/down</b>: Goto first/last item</p>\n")+ | 1526 | i18n("<p><b>shift+up/down</b>: Goto first/last item</p>\n")+ |
1527 | i18n("<p><h3>In event/todo viewer:</h3></p>\n") + | 1527 | i18n("<p><h3>In event/todo viewer:</h3></p>\n") + |
1528 | i18n("<p><b>I,C</b>: Close dialog.</p>\n")+ | 1528 | i18n("<p><b>I,C</b>: Close dialog.</p>\n")+ |
1529 | i18n("<p><b>A</b>: Show agenda view.</p>\n")+ | 1529 | i18n("<p><b>A</b>: Show agenda view.</p>\n")+ |
1530 | i18n("<p><b>E</b>: Edit item</p>\n") + | 1530 | i18n("<p><b>E</b>: Edit item</p>\n") + |
1531 | i18n("<p><h2>KO/Pi icon colors:</h2></p>\n") + | 1531 | i18n("<p><h2>KO/Pi icon colors:</h2></p>\n") + |
1532 | i18n("<p><b>(for square icons in agenda and month view)</b></p>\n") + | 1532 | i18n("<p><b>(for square icons in agenda and month view)</b></p>\n") + |
1533 | i18n("<p><b>Cross</b>: Item cancelled.([c] in Whats'Next view)</p>\n")+ | 1533 | i18n("<p><b>Cross</b>: Item cancelled.([c] in Whats'Next view)</p>\n")+ |
1534 | i18n("<p><b>Red</b>: Alarm set.([a] in Whats'Next view)</p>\n")+ | 1534 | i18n("<p><b>Red</b>: Alarm set.([a] in Whats'Next view)</p>\n")+ |
1535 | i18n("<p><b>Blue</b>: Recurrent event.([r] in Whats'Next view)</p>\n")+ | 1535 | i18n("<p><b>Blue</b>: Recurrent event.([r] in Whats'Next view)</p>\n")+ |
1536 | i18n("<p><b>Dark green</b>: Information(description) available.([i] in WN view)</p>\n")+ | 1536 | i18n("<p><b>Dark green</b>: Information(description) available.([i] in WN view)</p>\n")+ |
1537 | i18n("<p><b>Black</b>: Event/todo with attendees. You are the organizer!</p>\n")+ | 1537 | i18n("<p><b>Black</b>: Event/todo with attendees. You are the organizer!</p>\n")+ |
1538 | i18n("<p><b>Dark yellow</b>: Event/todo with attendees.</p>\n") + | 1538 | i18n("<p><b>Dark yellow</b>: Event/todo with attendees.</p>\n") + |
1539 | i18n("<p><b>White</b>: Item readonly</p>\n"); | 1539 | i18n("<p><b>White</b>: Item readonly</p>\n"); |
1540 | displayText( text, cap); | 1540 | displayText( text, cap); |
1541 | } | 1541 | } |
1542 | void MainWindow::aboutAutoSaving() | 1542 | void MainWindow::aboutAutoSaving() |
1543 | { | 1543 | { |
1544 | QString text = i18n("After changing something, the data is\nautomatically saved to the file\n~/kdepim/apps/korganizer/mycalendar.ics\nafter (configurable) three minutes.\nFor safety reasons there is one autosaving\nafter 10 minutes (of idle time) again. The \ndata is saved automatically when closing KO/Pi\nYou can create a backup file \nwith: File - Save Calendar Backup\n"); | 1544 | QString text = i18n("After changing something, the data is\nautomatically saved to the file\n~/kdepim/apps/korganizer/mycalendar.ics\nafter (configurable) three minutes.\nFor safety reasons there is one autosaving\nafter 10 minutes (of idle time) again. The \ndata is saved automatically when closing KO/Pi\nYou can create a backup file \nwith: File - Save Calendar Backup\n"); |
1545 | 1545 | ||
1546 | KApplication::showText( i18n("Auto Saving in KOrganizer/Pi"), text); | 1546 | KApplication::showText( i18n("Auto Saving in KOrganizer/Pi"), text); |
1547 | 1547 | ||
1548 | } | 1548 | } |
1549 | void MainWindow::aboutKnownBugs() | 1549 | void MainWindow::aboutKnownBugs() |
1550 | { | 1550 | { |
1551 | QMessageBox* msg; | 1551 | QMessageBox* msg; |
1552 | msg = new QMessageBox( i18n("Known Problems in KOrganizer/Pi"), | 1552 | msg = new QMessageBox( i18n("Known Problems in KOrganizer/Pi"), |
1553 | i18n("1) Importing *.vcs or *.ics files from\nother applications may not work properly,\nif there are events with properties\nKO/Pi does not support.\n")+ | 1553 | i18n("1) Importing *.vcs or *.ics files from\nother applications may not work properly,\nif there are events with properties\nKO/Pi does not support.\n")+ |
1554 | i18n("2) Audio alarm daemon\nfor Zaurus is available!\nas an additional small application\n")+ | 1554 | i18n("2) Audio alarm daemon\nfor Zaurus is available!\nas an additional small application\n")+ |
1555 | i18n("\nPlease report unexpected behaviour to\nlutz@pi-sync.info\n") + | 1555 | i18n("\nPlease report unexpected behaviour to\nlutz@pi-sync.info\n") + |
1556 | i18n("\nor report them in the bugtracker on\n") + | 1556 | i18n("\nor report them in the bugtracker on\n") + |
1557 | i18n("\nhttp://sourceforge.net/projects/kdepimpi\n"), | 1557 | i18n("\nhttp://sourceforge.net/projects/kdepimpi\n"), |
1558 | QMessageBox::NoIcon, | 1558 | QMessageBox::NoIcon, |
1559 | QMessageBox::Ok, | 1559 | QMessageBox::Ok, |
1560 | QMessageBox::NoButton, | 1560 | QMessageBox::NoButton, |
1561 | QMessageBox::NoButton); | 1561 | QMessageBox::NoButton); |
1562 | msg->exec(); | 1562 | msg->exec(); |
1563 | delete msg; | 1563 | delete msg; |
1564 | 1564 | ||
1565 | } | 1565 | } |
1566 | 1566 | ||
1567 | QString MainWindow::defaultFileName() | 1567 | QString MainWindow::defaultFileName() |
1568 | { | 1568 | { |
1569 | return locateLocal( "data", "korganizer/mycalendar.ics" ); | 1569 | return locateLocal( "data", "korganizer/mycalendar.ics" ); |
1570 | } | 1570 | } |
1571 | QString MainWindow::syncFileName() | 1571 | QString MainWindow::syncFileName() |
1572 | { | 1572 | { |
1573 | #ifdef DESKTOP_VERSION | 1573 | #ifdef DESKTOP_VERSION |
1574 | return locateLocal( "tmp", "synccalendar.ics" ); | 1574 | return locateLocal( "tmp", "synccalendar.ics" ); |
1575 | #else | 1575 | #else |
1576 | return QString( "/tmp/synccalendar.ics" ); | 1576 | return QString( "/tmp/synccalendar.ics" ); |
1577 | #endif | 1577 | #endif |
1578 | } | 1578 | } |
1579 | #include "koglobals.h" | 1579 | #include "koglobals.h" |
1580 | #include <kcalendarsystem.h> | 1580 | #include <kcalendarsystem.h> |
1581 | void MainWindow::updateWeek(QDate seda) | 1581 | void MainWindow::updateWeek(QDate seda) |
1582 | { | 1582 | { |
1583 | int weekNum = KGlobal::locale()->weekNum ( seda ); | 1583 | int weekNum = KGlobal::locale()->weekNum ( seda ); |
1584 | mWeekPixmap.fill( mWeekBgColor ); | 1584 | mWeekPixmap.fill( mWeekBgColor ); |
1585 | QPainter p ( &mWeekPixmap ); | 1585 | QPainter p ( &mWeekPixmap ); |
1586 | p.setFont( mWeekFont ); | 1586 | p.setFont( mWeekFont ); |
1587 | p.drawText( 0,0,mWeekPixmap.width(), mWeekPixmap.height(),AlignCenter, QString::number( weekNum) ); | 1587 | p.drawText( 0,0,mWeekPixmap.width(), mWeekPixmap.height(),AlignCenter, QString::number( weekNum) ); |
1588 | p.end(); | 1588 | p.end(); |
1589 | QIconSet icon3 ( mWeekPixmap ); | 1589 | QIconSet icon3 ( mWeekPixmap ); |
1590 | mWeekAction->setIconSet ( icon3 ); | 1590 | mWeekAction->setIconSet ( icon3 ); |
1591 | 1591 | ||
1592 | } | 1592 | } |
1593 | void MainWindow::updateWeekNum(const DateList &selectedDates) | 1593 | void MainWindow::updateWeekNum(const DateList &selectedDates) |
1594 | { | 1594 | { |
1595 | updateWeek( selectedDates.first() ); | 1595 | updateWeek( selectedDates.first() ); |
1596 | } | 1596 | } |
1597 | void MainWindow::processIncidenceSelection( Incidence *incidence ) | 1597 | void MainWindow::processIncidenceSelection( Incidence *incidence ) |
1598 | { | 1598 | { |
1599 | 1599 | ||
1600 | if ( !incidence ) { | 1600 | if ( !incidence ) { |
1601 | enableIncidenceActions( false ); | 1601 | enableIncidenceActions( false ); |
1602 | 1602 | ||
1603 | mNewSubTodoAction->setEnabled( false ); | 1603 | mNewSubTodoAction->setEnabled( false ); |
1604 | setCaptionToDates(); | 1604 | setCaptionToDates(); |
1605 | return; | 1605 | return; |
1606 | 1606 | ||
1607 | } | 1607 | } |
1608 | 1608 | ||
1609 | //KGlobal::locale()->formatDateTime(nextA, true); | 1609 | //KGlobal::locale()->formatDateTime(nextA, true); |
1610 | QString startString = ""; | 1610 | QString startString = ""; |
1611 | if ( incidence->typeID() != todoID ) { | 1611 | if ( incidence->typeID() != todoID ) { |
1612 | if ( incidence->dtStart().date() < incidence->dtEnd().date() ) { | 1612 | if ( incidence->dtStart().date() < incidence->dtEnd().date() ) { |
1613 | if ( incidence->doesFloat() ) { | 1613 | if ( incidence->doesFloat() ) { |
1614 | startString += ": "+incidence->dtStartDateStr( true ); | 1614 | startString += ": "+incidence->dtStartDateStr( true ); |
1615 | startString += " --- "+((Event*)incidence)->dtEndDateStr( true ); | 1615 | startString += " --- "+((Event*)incidence)->dtEndDateStr( true ); |
1616 | 1616 | ||
1617 | } else { | 1617 | } else { |
1618 | startString = ": "+incidence->dtStartStr(true); | 1618 | startString = ": "+incidence->dtStartStr(true); |
1619 | startString += " --- "+((Event*)incidence)->dtEndStr(true); | 1619 | startString += " --- "+((Event*)incidence)->dtEndStr(true); |
1620 | 1620 | ||
1621 | } | 1621 | } |
1622 | 1622 | ||
1623 | } else { | 1623 | } else { |
1624 | if ( incidence->dtStart().time() != incidence->dtEnd().time() ) | 1624 | if ( incidence->dtStart().time() != incidence->dtEnd().time() ) |
1625 | startString = ": "+KGlobal::locale()->formatTime(incidence->dtStart().time())+ | 1625 | startString = ": "+KGlobal::locale()->formatTime(incidence->dtStart().time())+ |
1626 | "-"+KGlobal::locale()->formatTime(incidence->dtEnd().time()); | 1626 | "-"+KGlobal::locale()->formatTime(incidence->dtEnd().time()); |
1627 | 1627 | ||
1628 | if ( incidence->isBirthday() || incidence->isAnniversary() ) { | 1628 | if ( incidence->isBirthday() || incidence->isAnniversary() ) { |
1629 | bool ok; | 1629 | bool ok; |
1630 | QDateTime noc = incidence->getNextOccurence( mView->startDate().addDays(-1), &ok ); | 1630 | QDateTime noc = incidence->getNextOccurence( mView->startDate().addDays(-1), &ok ); |
1631 | if ( ok ) { | 1631 | if ( ok ) { |
1632 | int years = noc.date().year() - incidence->dtStart().date().year(); | 1632 | int years = noc.date().year() - incidence->dtStart().date().year(); |
1633 | startString += i18n(" (%1 y.)"). arg( years ); | 1633 | startString += i18n(" (%1 y.)"). arg( years ); |
1634 | } | 1634 | } |
1635 | } | 1635 | } |
1636 | else | 1636 | else |
1637 | startString +=" "+KGlobal::locale()->formatDate( incidence->dtStart().date(), true); | 1637 | startString +=" "+KGlobal::locale()->formatDate( incidence->dtStart().date(), true); |
1638 | } | 1638 | } |
1639 | 1639 | ||
1640 | } | 1640 | } |
1641 | else | 1641 | else |
1642 | startString = i18n(": (Prio ") +QString::number( (( KCal::Todo*)incidence)->priority() ) +") "+QString::number( (( KCal::Todo*)incidence)->percentComplete() ) +i18n("\% completed"); | 1642 | startString = i18n(": (Prio ") +QString::number( (( KCal::Todo*)incidence)->priority() ) +") "+QString::number( (( KCal::Todo*)incidence)->percentComplete() ) +i18n("\% completed"); |
1643 | if ( !incidence->location().isEmpty() ) | 1643 | if ( !incidence->location().isEmpty() ) |
1644 | startString += " (" +incidence->location()+")"; | 1644 | startString += " (" +incidence->location()+")"; |
1645 | setCaption( incidence->summary()+startString); | 1645 | setCaption( incidence->summary()+startString); |
1646 | 1646 | ||
1647 | enableIncidenceActions( true ); | 1647 | enableIncidenceActions( true ); |
1648 | 1648 | ||
1649 | if ( incidence->typeID() == eventID ) { | 1649 | if ( incidence->typeID() == eventID ) { |
1650 | mShowAction->setText( i18n("Show Event...") ); | 1650 | mShowAction->setText( i18n("Show Event...") ); |
1651 | mEditAction->setText( i18n("Edit Event...") ); | 1651 | mEditAction->setText( i18n("Edit Event...") ); |
1652 | mDeleteAction->setText( i18n("Delete Event...") ); | 1652 | mDeleteAction->setText( i18n("Delete Event...") ); |
1653 | 1653 | ||
1654 | mNewSubTodoAction->setEnabled( false ); | 1654 | mNewSubTodoAction->setEnabled( false ); |
1655 | } else if ( incidence->typeID() == todoID ) { | 1655 | } else if ( incidence->typeID() == todoID ) { |
1656 | mShowAction->setText( i18n("Show Todo...") ); | 1656 | mShowAction->setText( i18n("Show Todo...") ); |
1657 | mEditAction->setText( i18n("Edit Todo...") ); | 1657 | mEditAction->setText( i18n("Edit Todo...") ); |
1658 | mDeleteAction->setText( i18n("Delete Todo...") ); | 1658 | mDeleteAction->setText( i18n("Delete Todo...") ); |
1659 | 1659 | ||
1660 | mNewSubTodoAction->setEnabled( true ); | 1660 | mNewSubTodoAction->setEnabled( true ); |
1661 | } else { | 1661 | } else { |
1662 | mShowAction->setText( i18n("Show...") ); | 1662 | mShowAction->setText( i18n("Show...") ); |
1663 | mShowAction->setText( i18n("Edit...") ); | 1663 | mShowAction->setText( i18n("Edit...") ); |
1664 | mShowAction->setText( i18n("Delete...") ); | 1664 | mShowAction->setText( i18n("Delete...") ); |
1665 | 1665 | ||
1666 | mNewSubTodoAction->setEnabled( false ); | 1666 | mNewSubTodoAction->setEnabled( false ); |
1667 | } | 1667 | } |
1668 | } | 1668 | } |
1669 | 1669 | ||
1670 | void MainWindow::enableIncidenceActions( bool enabled ) | 1670 | void MainWindow::enableIncidenceActions( bool enabled ) |
1671 | { | 1671 | { |
1672 | mShowAction->setEnabled( enabled ); | 1672 | mShowAction->setEnabled( enabled ); |
1673 | mEditAction->setEnabled( enabled ); | 1673 | mEditAction->setEnabled( enabled ); |
1674 | mDeleteAction->setEnabled( enabled ); | 1674 | mDeleteAction->setEnabled( enabled ); |
1675 | 1675 | ||
1676 | mCloneAction->setEnabled( enabled ); | 1676 | mCloneAction->setEnabled( enabled ); |
1677 | mMoveAction->setEnabled( enabled ); | 1677 | mMoveAction->setEnabled( enabled ); |
1678 | mBeamAction->setEnabled( enabled ); | 1678 | mBeamAction->setEnabled( enabled ); |
1679 | mCancelAction->setEnabled( enabled ); | 1679 | mCancelAction->setEnabled( enabled ); |
1680 | } | 1680 | } |
1681 | 1681 | ||
1682 | void MainWindow::importOL() | 1682 | void MainWindow::importOL() |
1683 | { | 1683 | { |
1684 | #ifdef _OL_IMPORT_ | 1684 | #ifdef _OL_IMPORT_ |
1685 | mView->clearAllViews(); | 1685 | mView->clearAllViews(); |
1686 | KOImportOLdialog *id = new KOImportOLdialog("Import from OL - select folder!" , mView->calendar(),this ); | 1686 | KOImportOLdialog *id = new KOImportOLdialog("Import from OL - select folder!" , mView->calendar(),this ); |
1687 | id->exec(); | 1687 | id->exec(); |
1688 | delete id; | 1688 | delete id; |
1689 | mView->calendar()->checkAlarmForIncidence( 0, true ); | 1689 | mView->calendar()->checkAlarmForIncidence( 0, true ); |
1690 | mView->updateView(); | 1690 | mView->updateView(); |
1691 | #endif | 1691 | #endif |
1692 | } | 1692 | } |
1693 | void MainWindow::importBday() | 1693 | void MainWindow::importBday() |
1694 | { | 1694 | { |
1695 | int result = QMessageBox::warning( this, i18n("KO/Pi: Warning!"), | 1695 | int result = QMessageBox::warning( this, i18n("KO/Pi: Warning!"), |
1696 | i18n("When importing birthdays twice\nduplicated events will be ignored,\nif the event has not been\nchanged in KO/Pi!\n"), | 1696 | i18n("When importing birthdays twice\nduplicated events will be ignored,\nif the event has not been\nchanged in KO/Pi!\n"), |
1697 | i18n("Import!"), i18n("Cancel"), 0, | 1697 | i18n("Import!"), i18n("Cancel"), 0, |
1698 | 0, 1 ); | 1698 | 0, 1 ); |
1699 | if ( result == 0 ) { | 1699 | if ( result == 0 ) { |
1700 | mView->importBday(); | 1700 | mView->importBday(); |
1701 | 1701 | ||
1702 | } | 1702 | } |
1703 | 1703 | ||
1704 | 1704 | ||
1705 | } | 1705 | } |
1706 | void MainWindow::importQtopia() | 1706 | void MainWindow::importQtopia() |
1707 | { | 1707 | { |
1708 | //#ifndef DESKTOP_VERSION | 1708 | //#ifndef DESKTOP_VERSION |
1709 | QString mess = i18n("When importing a calendar twice\nduplicated events will be ignored!\nYou can create a backup file with\nFile - Save Calendar Backup\nto revert importing"); | 1709 | QString mess = i18n("When importing a calendar twice\nduplicated events will be ignored!\nYou can create a backup file with\nFile - Save Calendar Backup\nto revert importing"); |
1710 | #ifdef DESKTOP_VERSION | 1710 | #ifdef DESKTOP_VERSION |
1711 | mess += i18n("The content of the following files will be\nimported (located in your home directory (hd)):\n(hd)/Applications/datebook/datebook.xml\n(hd)/Applications/todolist/todolist.xml\nThe following category file will be used:\n(hd)/Settings/Categories.xml"); | 1711 | mess += i18n("The content of the following files will be\nimported (located in your home directory (hd)):\n(hd)/Applications/datebook/datebook.xml\n(hd)/Applications/todolist/todolist.xml\nThe following category file will be used:\n(hd)/Settings/Categories.xml"); |
1712 | #endif | 1712 | #endif |
1713 | int result = QMessageBox::warning( this, i18n("KO/Pi: Warning!"),mess, | 1713 | int result = QMessageBox::warning( this, i18n("KO/Pi: Warning!"),mess, |
1714 | i18n("Import!"), i18n("Cancel"), 0, | 1714 | i18n("Import!"), i18n("Cancel"), 0, |
1715 | 0, 1 ); | 1715 | 0, 1 ); |
1716 | if ( result == 0 ) { | 1716 | if ( result == 0 ) { |
1717 | #ifndef DESKTOP_VERSION | 1717 | #ifndef DESKTOP_VERSION |
1718 | QString datebook = Global::applicationFileName( "datebook", "datebook.xml"); | 1718 | QString datebook = Global::applicationFileName( "datebook", "datebook.xml"); |
1719 | QString todolist = Global::applicationFileName( "todolist", "todolist.xml"); | 1719 | QString todolist = Global::applicationFileName( "todolist", "todolist.xml"); |
1720 | QString categories = QString( getenv( "HOME" ) ) + "/Settings/Categories.xml"; | 1720 | QString categories = QString( getenv( "HOME" ) ) + "/Settings/Categories.xml"; |
1721 | #else | 1721 | #else |
1722 | QString datebook = QDir::homeDirPath()+ "/Applications/datebook/datebook.xml"; | 1722 | QString datebook = QDir::homeDirPath()+ "/Applications/datebook/datebook.xml"; |
1723 | QString todolist = QDir::homeDirPath()+ "/Applications/todolist/todolist.xml"; | 1723 | QString todolist = QDir::homeDirPath()+ "/Applications/todolist/todolist.xml"; |
1724 | QString categories = QDir::homeDirPath()+ "/Settings/Categories.xml"; | 1724 | QString categories = QDir::homeDirPath()+ "/Settings/Categories.xml"; |
1725 | #endif | 1725 | #endif |
1726 | mView->importQtopia( categories, datebook, todolist ); | 1726 | mView->importQtopia( categories, datebook, todolist ); |
1727 | } | 1727 | } |
1728 | mView->calendar()->reInitAlarmSettings(); | 1728 | mView->calendar()->reInitAlarmSettings(); |
1729 | #if 0 | 1729 | #if 0 |
1730 | int result = QMessageBox::warning( this, i18n("KO/Pi: Warning!"), | 1730 | int result = QMessageBox::warning( this, i18n("KO/Pi: Warning!"), |
1731 | i18n("Not supported \non desktop!\n"), | 1731 | i18n("Not supported \non desktop!\n"), |
1732 | i18n("Ok"), i18n("Cancel"), 0, | 1732 | i18n("Ok"), i18n("Cancel"), 0, |
1733 | 0, 1 ); | 1733 | 0, 1 ); |
1734 | 1734 | ||
1735 | #endif | 1735 | #endif |
1736 | } | 1736 | } |
1737 | 1737 | ||
1738 | void MainWindow::saveOnClose() | 1738 | void MainWindow::saveOnClose() |
1739 | { | 1739 | { |
1740 | KOPrefs *p = KOPrefs::instance(); | 1740 | KOPrefs *p = KOPrefs::instance(); |
1741 | p->mToolBarHor = ( iconToolBar->orientation () == Qt:: Horizontal ); | 1741 | p->mToolBarHor = ( iconToolBar->orientation () == Qt:: Horizontal ); |
1742 | p->mToolBarHorV = ( viewToolBar->orientation () == Qt:: Horizontal ); | 1742 | p->mToolBarHorV = ( viewToolBar->orientation () == Qt:: Horizontal ); |
1743 | p->mToolBarHorN = ( navigatorToolBar->orientation () == Qt:: Horizontal ); | 1743 | p->mToolBarHorN = ( navigatorToolBar->orientation () == Qt:: Horizontal ); |
1744 | if ( filterToolBar ) { | 1744 | if ( filterToolBar ) { |
1745 | p->mToolBarHorF = ( filterToolBar->orientation () == Qt:: Horizontal ); | 1745 | p->mToolBarHorF = ( filterToolBar->orientation () == Qt:: Horizontal ); |
1746 | } | 1746 | } |
1747 | #ifdef DESKTOP_VERSION | 1747 | #ifdef DESKTOP_VERSION |
1748 | 1748 | ||
1749 | QPoint myP; | 1749 | QPoint myP; |
1750 | myP = mapFromGlobal( iconToolBar->mapToGlobal( QPoint( 0,0) ) ); | 1750 | myP = mapFromGlobal( iconToolBar->mapToGlobal( QPoint( 0,0) ) ); |
1751 | if ( p->mToolBarHor ) | 1751 | if ( p->mToolBarHor ) |
1752 | p->mToolBarUp = myP.y() > height()/2; | 1752 | p->mToolBarUp = myP.y() > height()/2; |
1753 | else | 1753 | else |
1754 | p->mToolBarUp = myP.x() > width()/2; | 1754 | p->mToolBarUp = myP.x() > width()/2; |
1755 | myP = mapFromGlobal( viewToolBar->mapToGlobal( QPoint( 0,0) ) ); | 1755 | myP = mapFromGlobal( viewToolBar->mapToGlobal( QPoint( 0,0) ) ); |
1756 | if ( p->mToolBarHorV ) | 1756 | if ( p->mToolBarHorV ) |
1757 | p->mToolBarUpV = myP.y() > height()/2; | 1757 | p->mToolBarUpV = myP.y() > height()/2; |
1758 | else | 1758 | else |
1759 | p->mToolBarUpV = myP.x() > width()/2 ; | 1759 | p->mToolBarUpV = myP.x() > width()/2 ; |
1760 | myP = mapFromGlobal( navigatorToolBar->mapToGlobal( QPoint( 0,0) ) ); | 1760 | myP = mapFromGlobal( navigatorToolBar->mapToGlobal( QPoint( 0,0) ) ); |
1761 | if ( p->mToolBarHorN ) | 1761 | if ( p->mToolBarHorN ) |
1762 | p->mToolBarUpN = myP.y() > height()/2; | 1762 | p->mToolBarUpN = myP.y() > height()/2; |
1763 | else | 1763 | else |
1764 | p->mToolBarUpN = myP.x() > width()/2 ; | 1764 | p->mToolBarUpN = myP.x() > width()/2 ; |
1765 | if ( filterToolBar ) { | 1765 | if ( filterToolBar ) { |
1766 | myP = mapFromGlobal( filterToolBar->mapToGlobal( QPoint( 0,0) ) ); | 1766 | myP = mapFromGlobal( filterToolBar->mapToGlobal( QPoint( 0,0) ) ); |
1767 | if ( p->mToolBarHorF ) | 1767 | if ( p->mToolBarHorF ) |
1768 | p->mToolBarUpF = myP.y() > height()/2; | 1768 | p->mToolBarUpF = myP.y() > height()/2; |
1769 | else | 1769 | else |
1770 | p->mToolBarUpF = myP.x() > width()/2 ; | 1770 | p->mToolBarUpF = myP.x() > width()/2 ; |
1771 | } | 1771 | } |
1772 | #else | 1772 | #else |
1773 | if ( p->mToolBarHor ) | 1773 | if ( p->mToolBarHor ) |
1774 | p->mToolBarUp = iconToolBar->y() > height()/2; | 1774 | p->mToolBarUp = iconToolBar->y() > height()/2; |
1775 | else | 1775 | else |
1776 | p->mToolBarUp = iconToolBar->x() > width()/2; | 1776 | p->mToolBarUp = iconToolBar->x() > width()/2; |
1777 | if ( p->mToolBarHorV ) | 1777 | if ( p->mToolBarHorV ) |
1778 | p->mToolBarUpV = viewToolBar->y() > height()/2; | 1778 | p->mToolBarUpV = viewToolBar->y() > height()/2; |
1779 | else | 1779 | else |
1780 | p->mToolBarUpV = viewToolBar->x() > width()/2 ; | 1780 | p->mToolBarUpV = viewToolBar->x() > width()/2 ; |
1781 | 1781 | ||
1782 | if ( p->mToolBarHorN ) | 1782 | if ( p->mToolBarHorN ) |
1783 | p->mToolBarUpN = navigatorToolBar->y() > height()/2; | 1783 | p->mToolBarUpN = navigatorToolBar->y() > height()/2; |
1784 | else | 1784 | else |
1785 | p->mToolBarUpN = navigatorToolBar->x() > width()/2 ; | 1785 | p->mToolBarUpN = navigatorToolBar->x() > width()/2 ; |
1786 | if ( filterToolBar ) { | 1786 | if ( filterToolBar ) { |
1787 | if ( p->mToolBarHorF ) | 1787 | if ( p->mToolBarHorF ) |
1788 | p->mToolBarUpF = filterToolBar->y() > height()/2; | 1788 | p->mToolBarUpF = filterToolBar->y() > height()/2; |
1789 | else | 1789 | else |
1790 | p->mToolBarUpF = filterToolBar->x() > width()/2 ; | 1790 | p->mToolBarUpF = filterToolBar->x() > width()/2 ; |
1791 | } | 1791 | } |
1792 | #endif | 1792 | #endif |
1793 | 1793 | ||
1794 | if ( mCalendarModifiedFlag || mView->checkFileChanged( defaultFileName())) | 1794 | if ( mCalendarModifiedFlag || mView->checkFileChanged( defaultFileName())) |
1795 | save(); | 1795 | save(); |
1796 | mView->writeSettings(); | 1796 | mView->writeSettings(); |
1797 | } | 1797 | } |
1798 | void MainWindow::slotModifiedChanged( bool changed ) | 1798 | void MainWindow::slotModifiedChanged( bool changed ) |
1799 | { | 1799 | { |
1800 | if ( mBlockAtStartup ) | 1800 | if ( mBlockAtStartup ) |
1801 | return; | 1801 | return; |
1802 | 1802 | ||
1803 | int msec; | 1803 | int msec; |
1804 | // we store the changes after 1 minute, | 1804 | // we store the changes after 1 minute, |
1805 | // and for safety reasons after 10 minutes again | 1805 | // and for safety reasons after 10 minutes again |
1806 | if ( !mSyncManager->blockSave() ) | 1806 | if ( !mSyncManager->blockSave() ) |
1807 | msec = (1000 * 60*KOPrefs::instance()->mAutoSaveInterval) +1000; | 1807 | msec = (1000 * 60*KOPrefs::instance()->mAutoSaveInterval) +1000; |
1808 | else | 1808 | else |
1809 | msec = 1000 * 600; | 1809 | msec = 1000 * 600; |
1810 | mSaveTimer.start( msec, true ); // 1 minute | 1810 | mSaveTimer.start( msec, true ); // 1 minute |
1811 | qDebug("KO: Saving File in %d secs!", msec/1000); | 1811 | qDebug("KO: Saving File in %d secs!", msec/1000); |
1812 | mCalendarModifiedFlag = true; | 1812 | mCalendarModifiedFlag = true; |
1813 | } | 1813 | } |
1814 | void MainWindow::saveStopTimer() | 1814 | void MainWindow::saveStopTimer() |
1815 | { | 1815 | { |
1816 | mSaveTimer.stop(); | 1816 | mSaveTimer.stop(); |
1817 | } | 1817 | } |
1818 | void MainWindow::save() | 1818 | void MainWindow::save() |
1819 | { | 1819 | { |
1820 | if ( !mCalendarModifiedFlag ) { | 1820 | if ( !mCalendarModifiedFlag ) { |
1821 | qDebug("KO: Calendar not modified. Nothing saved."); | 1821 | qDebug("KO: Calendar not modified. Nothing saved."); |
1822 | return; | 1822 | return; |
1823 | } | 1823 | } |
1824 | if ( mSyncManager->blockSave() ) | 1824 | if ( mSyncManager->blockSave() ) |
1825 | return; | 1825 | return; |
1826 | mSyncManager->setBlockSave(true); | 1826 | mSyncManager->setBlockSave(true); |
1827 | if ( mView->checkFileVersion( defaultFileName()) ) { | 1827 | if ( mView->checkAllFileVersions() ) { |
1828 | if ( KPimGlobalPrefs::instance()->mBackupEnabled ){ | 1828 | if ( KPimGlobalPrefs::instance()->mBackupEnabled ){ |
1829 | QDate reference ( 2000,1,1); | 1829 | QDate reference ( 2000,1,1); |
1830 | int daysTo = reference.daysTo ( QDate::currentDate() ); | 1830 | int daysTo = reference.daysTo ( QDate::currentDate() ); |
1831 | if ( daysTo - KPimGlobalPrefs::instance()->mBackupDayCount >= KOPrefs::instance()->mLastBackupDate ) { | 1831 | if ( daysTo - KPimGlobalPrefs::instance()->mBackupDayCount >= KOPrefs::instance()->mLastBackupDate ) { |
1832 | setCaption(i18n("Creating backup ... please wait ..." )); | 1832 | setCaption(i18n("Creating backup ... please wait ..." )); |
1833 | qDebug("KO: Last backup was %d days ago ", daysTo - KOPrefs::instance()->mLastBackupDate); | 1833 | qDebug("KO: Last backup was %d days ago ", daysTo - KOPrefs::instance()->mLastBackupDate); |
1834 | // we need the file path, the backup dir and the number of bups as param | 1834 | // we need the file path, the backup dir and the number of bups as param |
1835 | QString bupDir = KPimGlobalPrefs::instance()->mBackupDatadir; | 1835 | QString bupDir = KPimGlobalPrefs::instance()->mBackupDatadir; |
1836 | if ( KPimGlobalPrefs::instance()->mBackupUseDefaultDir) | 1836 | if ( KPimGlobalPrefs::instance()->mBackupUseDefaultDir) |
1837 | bupDir = KGlobalSettings::backupDataDir(); | 1837 | bupDir = KGlobalSettings::backupDataDir(); |
1838 | int retval = KApplication::createBackup( defaultFileName(), bupDir, KPimGlobalPrefs::instance()->mBackupNumbers ); | 1838 | int retval = KApplication::createBackup( defaultFileName(), bupDir, KPimGlobalPrefs::instance()->mBackupNumbers ); |
1839 | if ( retval == 0 ) { | 1839 | if ( retval == 0 ) { |
1840 | qDebug("KO: Backup cancelled. Will try again tomorrow "); | 1840 | qDebug("KO: Backup cancelled. Will try again tomorrow "); |
1841 | // retval == 0 : backup skipped for today, try again tomorrow | 1841 | // retval == 0 : backup skipped for today, try again tomorrow |
1842 | KOPrefs::instance()->mLastBackupDate = daysTo- KPimGlobalPrefs::instance()->mBackupDayCount+1; | 1842 | KOPrefs::instance()->mLastBackupDate = daysTo- KPimGlobalPrefs::instance()->mBackupDayCount+1; |
1843 | } else if ( retval == 1 ){ | 1843 | } else if ( retval == 1 ){ |
1844 | qDebug("KO: Backup created."); | 1844 | qDebug("KO: Backup created."); |
1845 | // backup ok | 1845 | // backup ok |
1846 | QPtrList<KopiCalendarFile> calendars = KOPrefs::instance()->mCalendars; | ||
1847 | KopiCalendarFile * cal = calendars.first(); | ||
1848 | cal = calendars.next(); | ||
1849 | while ( cal ) { | ||
1850 | if ( !cal->mErrorOnLoad ) { | ||
1851 | int retval = KApplication::createBackup( cal->mFileName, bupDir, KPimGlobalPrefs::instance()->mBackupNumbers ); | ||
1852 | } | ||
1853 | cal = calendars.next(); | ||
1854 | } | ||
1846 | KOPrefs::instance()->mLastBackupDate = daysTo; | 1855 | KOPrefs::instance()->mLastBackupDate = daysTo; |
1847 | |||
1848 | } else if ( retval == 2 ){ | 1856 | } else if ( retval == 2 ){ |
1849 | qDebug("KO: Backup globally cancelled."); | 1857 | qDebug("KO: Backup globally cancelled."); |
1850 | // backup globally cancelled | 1858 | // backup globally cancelled |
1851 | KPimGlobalPrefs::instance()->mBackupEnabled = false; | 1859 | KPimGlobalPrefs::instance()->mBackupEnabled = false; |
1852 | } | 1860 | } |
1853 | // retval == 3: do nothing, try again later | 1861 | // retval == 3: do nothing, try again later |
1854 | } | 1862 | } |
1855 | ; // KPimGlobalPrefs::instance()->mLastBackupDate | 1863 | ; // KPimGlobalPrefs::instance()->mLastBackupDate |
1856 | } | 1864 | } |
1857 | QTime neededSaveTime = QDateTime::currentDateTime().time(); | 1865 | QTime neededSaveTime = QDateTime::currentDateTime().time(); |
1858 | setCaption(i18n("KO/Pi:Saving Data to File ..." )); | 1866 | setCaption(i18n("KO/Pi:Saving Data to File ..." )); |
1859 | qDebug("KO: Start saving data to file!"); | 1867 | qDebug("KO: Start saving data to file!"); |
1860 | mView->saveCalendars(); | 1868 | mView->saveCalendars(); |
1861 | mCalendarModifiedFlag = false; | 1869 | mCalendarModifiedFlag = false; |
1862 | int msNeeded = neededSaveTime.msecsTo( QDateTime::currentDateTime().time() ); | 1870 | int msNeeded = neededSaveTime.msecsTo( QDateTime::currentDateTime().time() ); |
1863 | qDebug("KO: Needed %d ms for saving.",msNeeded ); | 1871 | qDebug("KO: Needed %d ms for saving.",msNeeded ); |
1864 | QString savemes; | 1872 | QString savemes; |
1865 | savemes.sprintf(i18n("KO/Pi:File Saved. Needed %d sec, %d ms"),(msNeeded/1000)%100,msNeeded%1000 ); | 1873 | savemes.sprintf(i18n("KO/Pi:File Saved. Needed %d sec, %d ms"),(msNeeded/1000)%100,msNeeded%1000 ); |
1866 | setCaption(savemes); | 1874 | setCaption(savemes); |
1867 | } else | 1875 | } else |
1868 | setCaption(i18n("Saving cancelled!")); | 1876 | setCaption(i18n("Saving cancelled!")); |
1869 | mSyncManager->setBlockSave( false ); | 1877 | mSyncManager->setBlockSave( false ); |
1870 | } | 1878 | } |
1871 | 1879 | ||
1872 | void MainWindow::keyReleaseEvent ( QKeyEvent * e) | 1880 | void MainWindow::keyReleaseEvent ( QKeyEvent * e) |
1873 | { | 1881 | { |
1874 | if ( !e->isAutoRepeat() ) { | 1882 | if ( !e->isAutoRepeat() ) { |
1875 | mFlagKeyPressed = false; | 1883 | mFlagKeyPressed = false; |
1876 | } | 1884 | } |
1877 | } | 1885 | } |
1878 | void MainWindow::keyPressEvent ( QKeyEvent * e ) | 1886 | void MainWindow::keyPressEvent ( QKeyEvent * e ) |
1879 | { | 1887 | { |
1880 | qApp->processEvents(); | 1888 | qApp->processEvents(); |
1881 | if ( e->isAutoRepeat() && !mFlagKeyPressed ) { | 1889 | if ( e->isAutoRepeat() && !mFlagKeyPressed ) { |
1882 | e->ignore(); | 1890 | e->ignore(); |
1883 | // qDebug(" ignore %d",e->isAutoRepeat() ); | 1891 | // qDebug(" ignore %d",e->isAutoRepeat() ); |
1884 | return; | 1892 | return; |
1885 | } | 1893 | } |
1886 | if (! e->isAutoRepeat() ) | 1894 | if (! e->isAutoRepeat() ) |
1887 | mFlagKeyPressed = true; | 1895 | mFlagKeyPressed = true; |
1888 | KOPrefs *p = KOPrefs::instance(); | 1896 | KOPrefs *p = KOPrefs::instance(); |
1889 | bool showSelectedDates = false; | 1897 | bool showSelectedDates = false; |
1890 | int size; | 1898 | int size; |
1891 | int pro = 0; | 1899 | int pro = 0; |
1892 | //qDebug("MainWindow::keyPressEvent "); | 1900 | //qDebug("MainWindow::keyPressEvent "); |
1893 | switch ( e->key() ) { | 1901 | switch ( e->key() ) { |
1894 | case Qt::Key_Right: | 1902 | case Qt::Key_Right: |
1895 | if ( e->state() == Qt::ControlButton || e->state() == Qt::ShiftButton) | 1903 | if ( e->state() == Qt::ControlButton || e->state() == Qt::ShiftButton) |
1896 | mView->goNextMonth(); | 1904 | mView->goNextMonth(); |
1897 | else | 1905 | else |
1898 | mView->goNext(); | 1906 | mView->goNext(); |
1899 | showSelectedDates = true; | 1907 | showSelectedDates = true; |
1900 | break; | 1908 | break; |
1901 | case Qt::Key_Left: | 1909 | case Qt::Key_Left: |
1902 | if ( e->state() == Qt::ControlButton|| e->state() == Qt::ShiftButton ) | 1910 | if ( e->state() == Qt::ControlButton|| e->state() == Qt::ShiftButton ) |
1903 | mView->goPreviousMonth(); | 1911 | mView->goPreviousMonth(); |
1904 | else | 1912 | else |
1905 | mView->goPrevious(); | 1913 | mView->goPrevious(); |
1906 | showSelectedDates = true; | 1914 | showSelectedDates = true; |
1907 | break; | 1915 | break; |
1908 | case Qt::Key_Down: | 1916 | case Qt::Key_Down: |
1909 | mView->viewManager()->agendaView()->scrollOneHourDown(); | 1917 | mView->viewManager()->agendaView()->scrollOneHourDown(); |
1910 | break; | 1918 | break; |
1911 | case Qt::Key_Up: | 1919 | case Qt::Key_Up: |
1912 | mView->viewManager()->agendaView()->scrollOneHourUp(); | 1920 | mView->viewManager()->agendaView()->scrollOneHourUp(); |
1913 | break; | 1921 | break; |
1914 | case Qt::Key_K: | 1922 | case Qt::Key_K: |
1915 | mView->viewManager()->showMonthViewWeek(); | 1923 | mView->viewManager()->showMonthViewWeek(); |
1916 | break; | 1924 | break; |
1917 | case Qt::Key_I: | 1925 | case Qt::Key_I: |
1918 | mView->showIncidence(); | 1926 | mView->showIncidence(); |
1919 | break; | 1927 | break; |
1920 | case Qt::Key_Delete: | 1928 | case Qt::Key_Delete: |
1921 | case Qt::Key_Backspace: | 1929 | case Qt::Key_Backspace: |
1922 | mView->deleteIncidence(); | 1930 | mView->deleteIncidence(); |
1923 | break; | 1931 | break; |
1924 | case Qt::Key_D: | 1932 | case Qt::Key_D: |
1925 | mView->viewManager()->showDayView(); | 1933 | mView->viewManager()->showDayView(); |
1926 | showSelectedDates = true; | 1934 | showSelectedDates = true; |
1927 | break; | 1935 | break; |
1928 | case Qt::Key_O: | 1936 | case Qt::Key_O: |
1929 | mView->toggleFilerEnabled( ); | 1937 | mView->toggleFilerEnabled( ); |
1930 | break; | 1938 | break; |
1931 | case Qt::Key_0: | 1939 | case Qt::Key_0: |
1932 | case Qt::Key_1: | 1940 | case Qt::Key_1: |
1933 | case Qt::Key_2: | 1941 | case Qt::Key_2: |
1934 | case Qt::Key_3: | 1942 | case Qt::Key_3: |
1935 | case Qt::Key_4: | 1943 | case Qt::Key_4: |
1936 | case Qt::Key_5: | 1944 | case Qt::Key_5: |
1937 | case Qt::Key_6: | 1945 | case Qt::Key_6: |
1938 | case Qt::Key_7: | 1946 | case Qt::Key_7: |
1939 | case Qt::Key_8: | 1947 | case Qt::Key_8: |
1940 | case Qt::Key_9: | 1948 | case Qt::Key_9: |
1941 | pro = e->key()-48; | 1949 | pro = e->key()-48; |
1942 | if ( pro == 0 ) | 1950 | if ( pro == 0 ) |
1943 | pro = 10; | 1951 | pro = 10; |
1944 | if ( e->state() == Qt::ControlButton) | 1952 | if ( e->state() == Qt::ControlButton) |
1945 | pro += 10; | 1953 | pro += 10; |
1946 | break; | 1954 | break; |
1947 | case Qt::Key_M: | 1955 | case Qt::Key_M: |
1948 | mView->viewManager()->showMonthView(); | 1956 | mView->viewManager()->showMonthView(); |
1949 | showSelectedDates = true; | 1957 | showSelectedDates = true; |
1950 | break; | 1958 | break; |
1951 | case Qt::Key_Insert: | 1959 | case Qt::Key_Insert: |
1952 | mView->newEvent(); | 1960 | mView->newEvent(); |
1953 | break; | 1961 | break; |
1954 | case Qt::Key_S : | 1962 | case Qt::Key_S : |
1955 | if ( e->state() == Qt::ControlButton || e->state() == Qt::ShiftButton) | 1963 | if ( e->state() == Qt::ControlButton || e->state() == Qt::ShiftButton) |
1956 | mView->newSubTodo(); | 1964 | mView->newSubTodo(); |
1957 | else | 1965 | else |
1958 | mView->dialogManager()->showSearchDialog(); | 1966 | mView->dialogManager()->showSearchDialog(); |
1959 | break; | 1967 | break; |
1960 | case Qt::Key_Y : | 1968 | case Qt::Key_Y : |
1961 | case Qt::Key_Z : | 1969 | case Qt::Key_Z : |
1962 | mView->viewManager()->showWorkWeekView(); | 1970 | mView->viewManager()->showWorkWeekView(); |
1963 | showSelectedDates = true; | 1971 | showSelectedDates = true; |
1964 | break; | 1972 | break; |
1965 | case Qt::Key_U : | 1973 | case Qt::Key_U : |
1966 | mView->viewManager()->showWeekView(); | 1974 | mView->viewManager()->showWeekView(); |
1967 | showSelectedDates = true; | 1975 | showSelectedDates = true; |
1968 | break; | 1976 | break; |
1969 | case Qt::Key_H : | 1977 | case Qt::Key_H : |
1970 | keyBindings(); | 1978 | keyBindings(); |
1971 | break; | 1979 | break; |
1972 | case Qt::Key_W: | 1980 | case Qt::Key_W: |
1973 | mView->viewManager()->showWhatsNextView(); | 1981 | mView->viewManager()->showWhatsNextView(); |
1974 | break; | 1982 | break; |
1975 | case Qt::Key_L: | 1983 | case Qt::Key_L: |
1976 | mView->viewManager()->showListView(); | 1984 | mView->viewManager()->showListView(); |
1977 | break; | 1985 | break; |
1978 | case Qt::Key_N: | 1986 | case Qt::Key_N: |
1979 | mView->viewManager()->showNextView(); | 1987 | mView->viewManager()->showNextView(); |
1980 | break; | 1988 | break; |
1981 | case Qt::Key_V: | 1989 | case Qt::Key_V: |
1982 | mView->viewManager()->showTodoView(); | 1990 | mView->viewManager()->showTodoView(); |
1983 | break; | 1991 | break; |
1984 | case Qt::Key_C: | 1992 | case Qt::Key_C: |
1985 | mView->viewManager()->agendaView()->setStartHour( QTime::currentTime ().hour() ); | 1993 | mView->viewManager()->agendaView()->setStartHour( QTime::currentTime ().hour() ); |
1986 | break; | 1994 | break; |
1987 | case Qt::Key_P: | 1995 | case Qt::Key_P: |
1988 | mView->showDatePicker( ); | 1996 | mView->showDatePicker( ); |
1989 | break; | 1997 | break; |
1990 | case Qt::Key_F: | 1998 | case Qt::Key_F: |
1991 | mView->editFilters(); | 1999 | mView->editFilters(); |
1992 | break; | 2000 | break; |
1993 | case Qt::Key_R: | 2001 | case Qt::Key_R: |
1994 | mView->toggleFilter(); | 2002 | mView->toggleFilter(); |
1995 | break; | 2003 | break; |
1996 | case Qt::Key_X: | 2004 | case Qt::Key_X: |
1997 | if ( e->state() == Qt::ControlButton ) | 2005 | if ( e->state() == Qt::ControlButton ) |
1998 | mView->toggleDateNavigatorWidget(); | 2006 | mView->toggleDateNavigatorWidget(); |
1999 | else { | 2007 | else { |
2000 | mView->viewManager()->showNextXView(); | 2008 | mView->viewManager()->showNextXView(); |
2001 | showSelectedDates = true; | 2009 | showSelectedDates = true; |
2002 | } | 2010 | } |
2003 | break; | 2011 | break; |
2004 | case Qt::Key_Space: | 2012 | case Qt::Key_Space: |
2005 | mView->toggleExpand(); | 2013 | mView->toggleExpand(); |
2006 | break; | 2014 | break; |
2007 | case Qt::Key_A: | 2015 | case Qt::Key_A: |
2008 | if ( e->state() == Qt::ControlButton || e->state() == Qt::ShiftButton ) | 2016 | if ( e->state() == Qt::ControlButton || e->state() == Qt::ShiftButton ) |
2009 | mView->showNextAlarms(); | 2017 | mView->showNextAlarms(); |
2010 | else | 2018 | else |
2011 | mView->toggleAllDaySize(); | 2019 | mView->toggleAllDaySize(); |
2012 | break; | 2020 | break; |
2013 | case Qt::Key_T: | 2021 | case Qt::Key_T: |
2014 | if ( e->state() == Qt::ControlButton|| e->state() == Qt::ShiftButton ) | 2022 | if ( e->state() == Qt::ControlButton|| e->state() == Qt::ShiftButton ) |
2015 | mView->newTodo(); | 2023 | mView->newTodo(); |
2016 | else { | 2024 | else { |
2017 | mView->goToday(); | 2025 | mView->goToday(); |
2018 | showSelectedDates = true; | 2026 | showSelectedDates = true; |
2019 | } | 2027 | } |
2020 | break; | 2028 | break; |
2021 | case Qt::Key_J: | 2029 | case Qt::Key_J: |
2022 | mView->viewManager()->showJournalView(); | 2030 | mView->viewManager()->showJournalView(); |
2023 | break; | 2031 | break; |
2024 | case Qt::Key_B: | 2032 | case Qt::Key_B: |
2025 | mView->editIncidenceDescription();; | 2033 | mView->editIncidenceDescription();; |
2026 | break; | 2034 | break; |
2027 | // case Qt::Key_Return: | 2035 | // case Qt::Key_Return: |
2028 | case Qt::Key_E: | 2036 | case Qt::Key_E: |
2029 | if ( e->state() == Qt::ControlButton|| e->state() == Qt::ShiftButton ) | 2037 | if ( e->state() == Qt::ControlButton|| e->state() == Qt::ShiftButton ) |
2030 | mView->newEvent(); | 2038 | mView->newEvent(); |
2031 | else | 2039 | else |
2032 | mView->editIncidence(); | 2040 | mView->editIncidence(); |
2033 | break; | 2041 | break; |
2034 | case Qt::Key_Plus: | 2042 | case Qt::Key_Plus: |
2035 | size = p->mHourSize +2; | 2043 | size = p->mHourSize +2; |
2036 | if ( size <= 22 ) | 2044 | if ( size <= 22 ) |
2037 | configureAgenda( size ); | 2045 | configureAgenda( size ); |
2038 | break; | 2046 | break; |
2039 | case Qt::Key_Minus: | 2047 | case Qt::Key_Minus: |
2040 | size = p->mHourSize - 2; | 2048 | size = p->mHourSize - 2; |
2041 | if ( size >= 4 ) | 2049 | if ( size >= 4 ) |
2042 | configureAgenda( size ); | 2050 | configureAgenda( size ); |
2043 | break; | 2051 | break; |
2044 | 2052 | ||
2045 | 2053 | ||
2046 | default: | 2054 | default: |
2047 | e->ignore(); | 2055 | e->ignore(); |
2048 | } | 2056 | } |
2049 | if ( pro > 0 ) { | 2057 | if ( pro > 0 ) { |
2050 | mView->selectFilter( pro-1 ); | 2058 | mView->selectFilter( pro-1 ); |
2051 | } | 2059 | } |
2052 | if ( showSelectedDates ) { | 2060 | if ( showSelectedDates ) { |
2053 | ;// setCaptionToDates(); | 2061 | ;// setCaptionToDates(); |
2054 | } | 2062 | } |
2055 | 2063 | ||
2056 | } | 2064 | } |
2057 | void MainWindow::fillFilterMenuTB() | 2065 | void MainWindow::fillFilterMenuTB() |
2058 | { | 2066 | { |
2059 | selectFilterMenuTB->clear(); | 2067 | selectFilterMenuTB->clear(); |
2060 | selectFilterMenuTB->insertItem(i18n ( "Edit Filters" ), 0 ); | 2068 | selectFilterMenuTB->insertItem(i18n ( "Edit Filters" ), 0 ); |
2061 | selectFilterMenuTB->insertSeparator(); | 2069 | selectFilterMenuTB->insertSeparator(); |
2062 | selectFilterMenuTB->insertItem(i18n ( "No Filter" ), 1 ); | 2070 | selectFilterMenuTB->insertItem(i18n ( "No Filter" ), 1 ); |
2063 | 2071 | ||
2064 | selectFilterMenuTB->insertSeparator(); | 2072 | selectFilterMenuTB->insertSeparator(); |
2065 | QPtrList<CalFilter> fili = mView->filters(); | 2073 | QPtrList<CalFilter> fili = mView->filters(); |
2066 | CalFilter *curfilter = mView->filterView()->selectedFilter(); | 2074 | CalFilter *curfilter = mView->filterView()->selectedFilter(); |
2067 | CalFilter *filter = fili.first(); | 2075 | CalFilter *filter = fili.first(); |
2068 | int iii = 2; | 2076 | int iii = 2; |
2069 | bool checkitem = mView->filterView()->filtersEnabled(); | 2077 | bool checkitem = mView->filterView()->filtersEnabled(); |
2070 | while(filter) { | 2078 | while(filter) { |
2071 | selectFilterMenuTB->insertItem( filter->name(), iii ); | 2079 | selectFilterMenuTB->insertItem( filter->name(), iii ); |
2072 | if ( filter == curfilter) | 2080 | if ( filter == curfilter) |
2073 | selectFilterMenuTB->setItemChecked( iii, checkitem ); | 2081 | selectFilterMenuTB->setItemChecked( iii, checkitem ); |
2074 | filter = fili.next(); | 2082 | filter = fili.next(); |
2075 | ++iii; | 2083 | ++iii; |
2076 | } | 2084 | } |
2077 | if ( !checkitem ) | 2085 | if ( !checkitem ) |
2078 | selectFilterMenuTB->setItemChecked( 1, true ); | 2086 | selectFilterMenuTB->setItemChecked( 1, true ); |
2079 | 2087 | ||
2080 | int x = 0; | 2088 | int x = 0; |
2081 | int y = iconToolBar->height(); | 2089 | int y = iconToolBar->height(); |
2082 | int dX = 0; | 2090 | int dX = 0; |
2083 | int dY = 0; | 2091 | int dY = 0; |
2084 | if ( iconToolBar->orientation () == Qt:: Horizontal ) { | 2092 | if ( iconToolBar->orientation () == Qt:: Horizontal ) { |
2085 | if ( iconToolBar->y() > height()/2 ) { | 2093 | if ( iconToolBar->y() > height()/2 ) { |
2086 | dY = selectFilterMenuTB->sizeHint().height()+8; | 2094 | dY = selectFilterMenuTB->sizeHint().height()+8; |
2087 | y = 0; | 2095 | y = 0; |
2088 | } | 2096 | } |
2089 | } else { | 2097 | } else { |
2090 | if ( iconToolBar->x() > width()/2 ) { // right side | 2098 | if ( iconToolBar->x() > width()/2 ) { // right side |
2091 | x=0; | 2099 | x=0; |
2092 | dX= selectFilterMenuTB->sizeHint().width()+8; | 2100 | dX= selectFilterMenuTB->sizeHint().width()+8; |
2093 | y = 0; | 2101 | y = 0; |
2094 | } else { | 2102 | } else { |
2095 | x= iconToolBar->width(); | 2103 | x= iconToolBar->width(); |
2096 | y = 0; | 2104 | y = 0; |
2097 | } | 2105 | } |
2098 | } | 2106 | } |
2099 | //qDebug("dax %d dy %d %d %d ", dX, dY, iconToolBar->x(), iconToolBar->y() ); | 2107 | //qDebug("dax %d dy %d %d %d ", dX, dY, iconToolBar->x(), iconToolBar->y() ); |
2100 | selectFilterMenuTB->popup(iconToolBar->mapToGlobal(QPoint(x,y)-QPoint( dX,dY))); | 2108 | selectFilterMenuTB->popup(iconToolBar->mapToGlobal(QPoint(x,y)-QPoint( dX,dY))); |
2101 | } | 2109 | } |
2102 | void MainWindow::fillFilterMenu() | 2110 | void MainWindow::fillFilterMenu() |
2103 | { | 2111 | { |
2104 | selectFilterMenu->clear(); | 2112 | selectFilterMenu->clear(); |
2105 | selectFilterMenu->insertItem(i18n ( "Edit Filters" ), 0 ); | 2113 | selectFilterMenu->insertItem(i18n ( "Edit Filters" ), 0 ); |
2106 | selectFilterMenu->insertSeparator(); | 2114 | selectFilterMenu->insertSeparator(); |
2107 | selectFilterMenu->insertItem(i18n ( "No Filter" ), 1 ); | 2115 | selectFilterMenu->insertItem(i18n ( "No Filter" ), 1 ); |
2108 | 2116 | ||
2109 | selectFilterMenu->insertSeparator(); | 2117 | selectFilterMenu->insertSeparator(); |
2110 | QPtrList<CalFilter> fili = mView->filters(); | 2118 | QPtrList<CalFilter> fili = mView->filters(); |
2111 | CalFilter *curfilter = mView->filterView()->selectedFilter(); | 2119 | CalFilter *curfilter = mView->filterView()->selectedFilter(); |
2112 | CalFilter *filter = fili.first(); | 2120 | CalFilter *filter = fili.first(); |
2113 | int iii = 2; | 2121 | int iii = 2; |
2114 | bool checkitem = mView->filterView()->filtersEnabled(); | 2122 | bool checkitem = mView->filterView()->filtersEnabled(); |
2115 | while(filter) { | 2123 | while(filter) { |
2116 | selectFilterMenu->insertItem( filter->name(), iii ); | 2124 | selectFilterMenu->insertItem( filter->name(), iii ); |
2117 | if ( filter == curfilter) | 2125 | if ( filter == curfilter) |
2118 | selectFilterMenu->setItemChecked( iii, checkitem ); | 2126 | selectFilterMenu->setItemChecked( iii, checkitem ); |
2119 | filter = fili.next(); | 2127 | filter = fili.next(); |
2120 | ++iii; | 2128 | ++iii; |
2121 | } | 2129 | } |
2122 | if ( !checkitem ) | 2130 | if ( !checkitem ) |
2123 | selectFilterMenu->setItemChecked( 1, true ); | 2131 | selectFilterMenu->setItemChecked( 1, true ); |
2124 | } | 2132 | } |
2125 | void MainWindow::fillFilterMenuPopup() | 2133 | void MainWindow::fillFilterMenuPopup() |
2126 | { | 2134 | { |
2127 | filterPopupMenu->clear(); | 2135 | filterPopupMenu->clear(); |
2128 | filterPopupMenu->insertItem(i18n ( "No Filter" ), 0 ); | 2136 | filterPopupMenu->insertItem(i18n ( "No Filter" ), 0 ); |
2129 | 2137 | ||
2130 | filterPopupMenu->insertSeparator(); | 2138 | filterPopupMenu->insertSeparator(); |
2131 | QPtrList<CalFilter> fili = mView->filters(); | 2139 | QPtrList<CalFilter> fili = mView->filters(); |
2132 | CalFilter *curfilter = mView->filterView()->selectedFilter(); | 2140 | CalFilter *curfilter = mView->filterView()->selectedFilter(); |
2133 | CalFilter *filter = fili.first(); | 2141 | CalFilter *filter = fili.first(); |
2134 | int iii = 1; | 2142 | int iii = 1; |
2135 | bool checkitem = mView->filterView()->filtersEnabled(); | 2143 | bool checkitem = mView->filterView()->filtersEnabled(); |
2136 | while(filter) { | 2144 | while(filter) { |
2137 | filterPopupMenu->insertItem( filter->name(), iii ); | 2145 | filterPopupMenu->insertItem( filter->name(), iii ); |
2138 | if ( filter == curfilter) | 2146 | if ( filter == curfilter) |
2139 | filterPopupMenu->setItemChecked( iii, checkitem ); | 2147 | filterPopupMenu->setItemChecked( iii, checkitem ); |
2140 | filter = fili.next(); | 2148 | filter = fili.next(); |
2141 | ++iii; | 2149 | ++iii; |
2142 | } | 2150 | } |
2143 | if ( !checkitem ) | 2151 | if ( !checkitem ) |
2144 | filterPopupMenu->setItemChecked( 0, true ); | 2152 | filterPopupMenu->setItemChecked( 0, true ); |
2145 | } | 2153 | } |
2146 | void MainWindow::selectFilter( int fil ) | 2154 | void MainWindow::selectFilter( int fil ) |
2147 | { | 2155 | { |
2148 | 2156 | ||
2149 | if ( fil == 0 ) { | 2157 | if ( fil == 0 ) { |
2150 | mView->editFilters( ); | 2158 | mView->editFilters( ); |
2151 | } else if ( fil == 1 ){ | 2159 | } else if ( fil == 1 ){ |
2152 | if ( mView->filterView()->filtersEnabled() ) | 2160 | if ( mView->filterView()->filtersEnabled() ) |
2153 | mView->toggleFilerEnabled( ); | 2161 | mView->toggleFilerEnabled( ); |
2154 | } else { | 2162 | } else { |
2155 | if ( !mView->filterView()->filtersEnabled() ) { | 2163 | if ( !mView->filterView()->filtersEnabled() ) { |
2156 | mView->filterView()->blockSignals( true ); | 2164 | mView->filterView()->blockSignals( true ); |
2157 | mView->toggleFilerEnabled( ); | 2165 | mView->toggleFilerEnabled( ); |
2158 | mView->filterView()->blockSignals( false ); | 2166 | mView->filterView()->blockSignals( false ); |
2159 | } | 2167 | } |
2160 | mView->selectFilter( fil-2 ); | 2168 | mView->selectFilter( fil-2 ); |
2161 | } | 2169 | } |
2162 | } | 2170 | } |
2163 | void MainWindow::updateFilterToolbar() | 2171 | void MainWindow::updateFilterToolbar() |
2164 | { | 2172 | { |
2165 | if ( filterMenubar ) { | 2173 | if ( filterMenubar ) { |
2166 | if ( !mView->filterView()->filtersEnabled() ) { | 2174 | if ( !mView->filterView()->filtersEnabled() ) { |
2167 | filterMenubar->changeItem( 0, i18n("No Filter") ); | 2175 | filterMenubar->changeItem( 0, i18n("No Filter") ); |
2168 | } else { | 2176 | } else { |
2169 | CalFilter *curfilter = mView->filterView()->selectedFilter(); | 2177 | CalFilter *curfilter = mView->filterView()->selectedFilter(); |
2170 | if ( curfilter ) { | 2178 | if ( curfilter ) { |
2171 | filterMenubar->changeItem( 0, curfilter->name() ); | 2179 | filterMenubar->changeItem( 0, curfilter->name() ); |
2172 | } | 2180 | } |
2173 | } | 2181 | } |
2174 | } | 2182 | } |
2175 | } | 2183 | } |
2176 | void MainWindow::selectFilterPopup( int fil ) | 2184 | void MainWindow::selectFilterPopup( int fil ) |
2177 | { | 2185 | { |
2178 | selectFilter( fil + 1 ); | 2186 | selectFilter( fil + 1 ); |
2179 | 2187 | ||
2180 | } | 2188 | } |
2181 | void MainWindow::configureToolBar( int item ) | 2189 | void MainWindow::configureToolBar( int item ) |
2182 | { | 2190 | { |
2183 | 2191 | ||
2184 | configureToolBarMenu->setItemChecked( item, !configureToolBarMenu-> isItemChecked ( item ) ); | 2192 | configureToolBarMenu->setItemChecked( item, !configureToolBarMenu-> isItemChecked ( item ) ); |
2185 | KOPrefs *p = KOPrefs::instance(); | 2193 | KOPrefs *p = KOPrefs::instance(); |
2186 | p-> mShowIconStretch= configureToolBarMenu->isItemChecked( 5 ); | 2194 | p-> mShowIconStretch= configureToolBarMenu->isItemChecked( 5 ); |
2187 | p-> mShowIconOnetoolbar = configureToolBarMenu->isItemChecked( 6 ); | 2195 | p-> mShowIconOnetoolbar = configureToolBarMenu->isItemChecked( 6 ); |
2188 | p-> mShowIconFilter = configureToolBarMenu->isItemChecked( 7 ); | 2196 | p-> mShowIconFilter = configureToolBarMenu->isItemChecked( 7 ); |
2189 | p-> mShowIconNewEvent= configureToolBarMenu->isItemChecked( 10 ); | 2197 | p-> mShowIconNewEvent= configureToolBarMenu->isItemChecked( 10 ); |
2190 | p->mShowIconNewTodo = configureToolBarMenu->isItemChecked( 20 ); | 2198 | p->mShowIconNewTodo = configureToolBarMenu->isItemChecked( 20 ); |
2191 | p->mShowIconNavigator = configureToolBarMenu->isItemChecked( 22 ); | 2199 | p->mShowIconNavigator = configureToolBarMenu->isItemChecked( 22 ); |
2192 | p->mShowIconAllday = configureToolBarMenu->isItemChecked( 24 ); | 2200 | p->mShowIconAllday = configureToolBarMenu->isItemChecked( 24 ); |
2193 | p->mShowIconFilterview = configureToolBarMenu->isItemChecked( 26 ); | 2201 | p->mShowIconFilterview = configureToolBarMenu->isItemChecked( 26 ); |
2194 | p->mShowIconToggleFull = configureToolBarMenu->isItemChecked( 28 ); | 2202 | p->mShowIconToggleFull = configureToolBarMenu->isItemChecked( 28 ); |
2195 | p-> mShowIconSearch= configureToolBarMenu->isItemChecked( 120 ); | 2203 | p-> mShowIconSearch= configureToolBarMenu->isItemChecked( 120 ); |
2196 | p-> mShowIconList= configureToolBarMenu->isItemChecked( 30 ); | 2204 | p-> mShowIconList= configureToolBarMenu->isItemChecked( 30 ); |
2197 | p-> mShowIconDay1= configureToolBarMenu->isItemChecked( 40 ); | 2205 | p-> mShowIconDay1= configureToolBarMenu->isItemChecked( 40 ); |
2198 | p-> mShowIconDay5= configureToolBarMenu->isItemChecked( 50 ); | 2206 | p-> mShowIconDay5= configureToolBarMenu->isItemChecked( 50 ); |
2199 | p-> mShowIconDay6= configureToolBarMenu->isItemChecked( 75 ); | 2207 | p-> mShowIconDay6= configureToolBarMenu->isItemChecked( 75 ); |
2200 | p-> mShowIconDay7= configureToolBarMenu->isItemChecked( 60 ); | 2208 | p-> mShowIconDay7= configureToolBarMenu->isItemChecked( 60 ); |
2201 | p-> mShowIconMonth= configureToolBarMenu->isItemChecked( 70 ); | 2209 | p-> mShowIconMonth= configureToolBarMenu->isItemChecked( 70 ); |
2202 | p-> mShowIconTodoview= configureToolBarMenu->isItemChecked( 80 ); | 2210 | p-> mShowIconTodoview= configureToolBarMenu->isItemChecked( 80 ); |
2203 | p-> mShowIconBackFast= configureToolBarMenu->isItemChecked( 200 ); | 2211 | p-> mShowIconBackFast= configureToolBarMenu->isItemChecked( 200 ); |
2204 | p-> mShowIconBack = configureToolBarMenu->isItemChecked( 210 ); | 2212 | p-> mShowIconBack = configureToolBarMenu->isItemChecked( 210 ); |
2205 | p-> mShowIconToday= configureToolBarMenu->isItemChecked( 130 ); | 2213 | p-> mShowIconToday= configureToolBarMenu->isItemChecked( 130 ); |
2206 | p-> mShowIconForward= configureToolBarMenu->isItemChecked( 220 ); | 2214 | p-> mShowIconForward= configureToolBarMenu->isItemChecked( 220 ); |
2207 | p-> mShowIconForwardFast= configureToolBarMenu->isItemChecked( 230 ); | 2215 | p-> mShowIconForwardFast= configureToolBarMenu->isItemChecked( 230 ); |
2208 | p-> mShowIconNextDays= configureToolBarMenu->isItemChecked( 100 ); | 2216 | p-> mShowIconNextDays= configureToolBarMenu->isItemChecked( 100 ); |
2209 | p-> mShowIconNext= configureToolBarMenu->isItemChecked( 110 ); | 2217 | p-> mShowIconNext= configureToolBarMenu->isItemChecked( 110 ); |
2210 | p-> mShowIconJournal= configureToolBarMenu->isItemChecked( 90 ); | 2218 | p-> mShowIconJournal= configureToolBarMenu->isItemChecked( 90 ); |
2211 | p-> mShowIconWhatsThis= configureToolBarMenu->isItemChecked( 300 ); | 2219 | p-> mShowIconWhatsThis= configureToolBarMenu->isItemChecked( 300 ); |
2212 | p-> mShowIconWeekNum= configureToolBarMenu->isItemChecked( 400 ); | 2220 | p-> mShowIconWeekNum= configureToolBarMenu->isItemChecked( 400 ); |
2213 | // initActions(); | 2221 | // initActions(); |
2214 | } | 2222 | } |
2215 | void MainWindow::setCaption ( const QString & c ) | 2223 | void MainWindow::setCaption ( const QString & c ) |
2216 | { | 2224 | { |
2217 | QString cap = c; | 2225 | QString cap = c; |
2218 | cap.replace( QRegExp("\n"), " " ); | 2226 | cap.replace( QRegExp("\n"), " " ); |
2219 | cap = cap.stripWhiteSpace(); | 2227 | cap = cap.stripWhiteSpace(); |
2220 | if ( cap.isEmpty() ) | 2228 | if ( cap.isEmpty() ) |
2221 | cap = "KO/Pi"; | 2229 | cap = "KO/Pi"; |
2222 | QWidget::setCaption( cap ); | 2230 | QWidget::setCaption( cap ); |
2223 | } | 2231 | } |
2224 | void MainWindow::setCaptionToDates() | 2232 | void MainWindow::setCaptionToDates() |
2225 | { | 2233 | { |
2226 | QString selDates; | 2234 | QString selDates; |
2227 | QDate date = mView->startDate(); | 2235 | QDate date = mView->startDate(); |
2228 | if ( ! date.isValid() ) { | 2236 | if ( ! date.isValid() ) { |
2229 | setCaption(""); | 2237 | setCaption(""); |
2230 | return; | 2238 | return; |
2231 | } | 2239 | } |