author | zautrix <zautrix> | 2004-10-18 09:08:13 (UTC) |
---|---|---|
committer | zautrix <zautrix> | 2004-10-18 09:08:13 (UTC) |
commit | 56990d318b15eacf7d3cc7425ab62f68da099ddf (patch) (unidiff) | |
tree | b2f021bd75bc6a08fa8fc51a07ce1755b8e4a95e /korganizer | |
parent | 1712d92ea25b220273859d985bc7211fa7a97a39 (diff) | |
download | kdepimpi-56990d318b15eacf7d3cc7425ab62f68da099ddf.zip kdepimpi-56990d318b15eacf7d3cc7425ab62f68da099ddf.tar.gz kdepimpi-56990d318b15eacf7d3cc7425ab62f68da099ddf.tar.bz2 |
fix of tmp file path for desktop version
-rw-r--r-- | korganizer/calendarview.cpp | 5 | ||||
-rw-r--r-- | korganizer/koprefs.cpp | 6 | ||||
-rw-r--r-- | korganizer/mainwindow.cpp | 4 |
3 files changed, 6 insertions, 9 deletions
diff --git a/korganizer/calendarview.cpp b/korganizer/calendarview.cpp index 290c0b9..884c61a 100644 --- a/korganizer/calendarview.cpp +++ b/korganizer/calendarview.cpp | |||
@@ -1538,1538 +1538,1541 @@ void CalendarView::setSyncEventsReadOnly() | |||
1538 | Event * ev; | 1538 | Event * ev; |
1539 | QPtrList<Event> eL = mCalendar->rawEvents(); | 1539 | QPtrList<Event> eL = mCalendar->rawEvents(); |
1540 | ev = eL.first(); | 1540 | ev = eL.first(); |
1541 | while ( ev ) { | 1541 | while ( ev ) { |
1542 | if ( ev->uid().left(15) == QString("last-syncEvent-") ) | 1542 | if ( ev->uid().left(15) == QString("last-syncEvent-") ) |
1543 | ev->setReadOnly( true ); | 1543 | ev->setReadOnly( true ); |
1544 | ev = eL.next(); | 1544 | ev = eL.next(); |
1545 | } | 1545 | } |
1546 | } | 1546 | } |
1547 | bool CalendarView::openCalendar(QString filename, bool merge) | 1547 | bool CalendarView::openCalendar(QString filename, bool merge) |
1548 | { | 1548 | { |
1549 | 1549 | ||
1550 | if (filename.isEmpty()) { | 1550 | if (filename.isEmpty()) { |
1551 | return false; | 1551 | return false; |
1552 | } | 1552 | } |
1553 | 1553 | ||
1554 | if (!QFile::exists(filename)) { | 1554 | if (!QFile::exists(filename)) { |
1555 | KMessageBox::error(this,i18n("File does not exist:\n '%1'.").arg(filename)); | 1555 | KMessageBox::error(this,i18n("File does not exist:\n '%1'.").arg(filename)); |
1556 | return false; | 1556 | return false; |
1557 | } | 1557 | } |
1558 | 1558 | ||
1559 | globalFlagBlockAgenda = 1; | 1559 | globalFlagBlockAgenda = 1; |
1560 | if (!merge) mCalendar->close(); | 1560 | if (!merge) mCalendar->close(); |
1561 | 1561 | ||
1562 | mStorage->setFileName( filename ); | 1562 | mStorage->setFileName( filename ); |
1563 | 1563 | ||
1564 | if ( mStorage->load() ) { | 1564 | if ( mStorage->load() ) { |
1565 | if ( merge ) ;//setModified( true ); | 1565 | if ( merge ) ;//setModified( true ); |
1566 | else { | 1566 | else { |
1567 | //setModified( true ); | 1567 | //setModified( true ); |
1568 | mViewManager->setDocumentId( filename ); | 1568 | mViewManager->setDocumentId( filename ); |
1569 | mDialogManager->setDocumentId( filename ); | 1569 | mDialogManager->setDocumentId( filename ); |
1570 | mTodoList->setDocumentId( filename ); | 1570 | mTodoList->setDocumentId( filename ); |
1571 | } | 1571 | } |
1572 | globalFlagBlockAgenda = 2; | 1572 | globalFlagBlockAgenda = 2; |
1573 | // if ( getLastSyncEvent() ) | 1573 | // if ( getLastSyncEvent() ) |
1574 | // getLastSyncEvent()->setReadOnly( true ); | 1574 | // getLastSyncEvent()->setReadOnly( true ); |
1575 | mCalendar->reInitAlarmSettings(); | 1575 | mCalendar->reInitAlarmSettings(); |
1576 | setSyncEventsReadOnly(); | 1576 | setSyncEventsReadOnly(); |
1577 | updateUnmanagedViews(); | 1577 | updateUnmanagedViews(); |
1578 | updateView(); | 1578 | updateView(); |
1579 | if ( filename != MainWindow::defaultFileName() ) { | 1579 | if ( filename != MainWindow::defaultFileName() ) { |
1580 | saveCalendar( MainWindow::defaultFileName() ); | 1580 | saveCalendar( MainWindow::defaultFileName() ); |
1581 | } else { | 1581 | } else { |
1582 | QFileInfo finf ( MainWindow::defaultFileName()); | 1582 | QFileInfo finf ( MainWindow::defaultFileName()); |
1583 | if ( finf.exists() ) { | 1583 | if ( finf.exists() ) { |
1584 | setLoadedFileVersion( finf.lastModified () ); | 1584 | setLoadedFileVersion( finf.lastModified () ); |
1585 | } | 1585 | } |
1586 | } | 1586 | } |
1587 | return true; | 1587 | return true; |
1588 | } else { | 1588 | } else { |
1589 | // while failing to load, the calendar object could | 1589 | // while failing to load, the calendar object could |
1590 | // have become partially populated. Clear it out. | 1590 | // have become partially populated. Clear it out. |
1591 | if ( !merge ) { | 1591 | if ( !merge ) { |
1592 | mCalendar->close(); | 1592 | mCalendar->close(); |
1593 | mViewManager->setDocumentId( filename ); | 1593 | mViewManager->setDocumentId( filename ); |
1594 | mDialogManager->setDocumentId( filename ); | 1594 | mDialogManager->setDocumentId( filename ); |
1595 | mTodoList->setDocumentId( filename ); | 1595 | mTodoList->setDocumentId( filename ); |
1596 | } | 1596 | } |
1597 | 1597 | ||
1598 | //KMessageBox::error(this,i18n("Couldn't load calendar\n '%1'.").arg(filename)); | 1598 | //KMessageBox::error(this,i18n("Couldn't load calendar\n '%1'.").arg(filename)); |
1599 | 1599 | ||
1600 | QTimer::singleShot ( 1, this, SLOT ( showOpenError() ) ); | 1600 | QTimer::singleShot ( 1, this, SLOT ( showOpenError() ) ); |
1601 | globalFlagBlockAgenda = 2; | 1601 | globalFlagBlockAgenda = 2; |
1602 | mCalendar->reInitAlarmSettings(); | 1602 | mCalendar->reInitAlarmSettings(); |
1603 | setSyncEventsReadOnly(); | 1603 | setSyncEventsReadOnly(); |
1604 | updateUnmanagedViews(); | 1604 | updateUnmanagedViews(); |
1605 | updateView(); | 1605 | updateView(); |
1606 | } | 1606 | } |
1607 | return false; | 1607 | return false; |
1608 | } | 1608 | } |
1609 | void CalendarView::showOpenError() | 1609 | void CalendarView::showOpenError() |
1610 | { | 1610 | { |
1611 | KMessageBox::error(this,i18n("Couldn't load calendar\n.")); | 1611 | KMessageBox::error(this,i18n("Couldn't load calendar\n.")); |
1612 | } | 1612 | } |
1613 | void CalendarView::setLoadedFileVersion(QDateTime dt) | 1613 | void CalendarView::setLoadedFileVersion(QDateTime dt) |
1614 | { | 1614 | { |
1615 | loadedFileVersion = dt; | 1615 | loadedFileVersion = dt; |
1616 | } | 1616 | } |
1617 | bool CalendarView::checkFileChanged(QString fn) | 1617 | bool CalendarView::checkFileChanged(QString fn) |
1618 | { | 1618 | { |
1619 | QFileInfo finf ( fn ); | 1619 | QFileInfo finf ( fn ); |
1620 | if ( !finf.exists() ) | 1620 | if ( !finf.exists() ) |
1621 | return true; | 1621 | return true; |
1622 | QDateTime dt = finf.lastModified (); | 1622 | QDateTime dt = finf.lastModified (); |
1623 | if ( dt <= loadedFileVersion ) | 1623 | if ( dt <= loadedFileVersion ) |
1624 | return false; | 1624 | return false; |
1625 | return true; | 1625 | return true; |
1626 | 1626 | ||
1627 | } | 1627 | } |
1628 | void CalendarView::watchSavedFile() | 1628 | void CalendarView::watchSavedFile() |
1629 | { | 1629 | { |
1630 | QFileInfo finf ( MainWindow::defaultFileName()); | 1630 | QFileInfo finf ( MainWindow::defaultFileName()); |
1631 | if ( !finf.exists() ) | 1631 | if ( !finf.exists() ) |
1632 | return; | 1632 | return; |
1633 | QDateTime dt = finf.lastModified (); | 1633 | QDateTime dt = finf.lastModified (); |
1634 | if ( dt < loadedFileVersion ) { | 1634 | if ( dt < loadedFileVersion ) { |
1635 | //qDebug("watch %s %s ", dt.toString().latin1(), loadedFileVersion.toString().latin1()); | 1635 | //qDebug("watch %s %s ", dt.toString().latin1(), loadedFileVersion.toString().latin1()); |
1636 | QTimer::singleShot( 1000 , this, SLOT ( watchSavedFile() ) ); | 1636 | QTimer::singleShot( 1000 , this, SLOT ( watchSavedFile() ) ); |
1637 | return; | 1637 | return; |
1638 | } | 1638 | } |
1639 | loadedFileVersion = dt; | 1639 | loadedFileVersion = dt; |
1640 | } | 1640 | } |
1641 | 1641 | ||
1642 | bool CalendarView::checkFileVersion(QString fn) | 1642 | bool CalendarView::checkFileVersion(QString fn) |
1643 | { | 1643 | { |
1644 | QFileInfo finf ( fn ); | 1644 | QFileInfo finf ( fn ); |
1645 | if ( !finf.exists() ) | 1645 | if ( !finf.exists() ) |
1646 | return true; | 1646 | return true; |
1647 | QDateTime dt = finf.lastModified (); | 1647 | QDateTime dt = finf.lastModified (); |
1648 | //qDebug("loaded file version %s",loadedFileVersion.toString().latin1()); | 1648 | //qDebug("loaded file version %s",loadedFileVersion.toString().latin1()); |
1649 | //qDebug("file on disk version %s",dt.toString().latin1()); | 1649 | //qDebug("file on disk version %s",dt.toString().latin1()); |
1650 | if ( dt <= loadedFileVersion ) | 1650 | if ( dt <= loadedFileVersion ) |
1651 | return true; | 1651 | return true; |
1652 | 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)) , | 1652 | 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)) , |
1653 | i18n("KO/Pi Warning"),i18n("Overwrite"), | 1653 | i18n("KO/Pi Warning"),i18n("Overwrite"), |
1654 | i18n("Sync+save")); | 1654 | i18n("Sync+save")); |
1655 | 1655 | ||
1656 | if ( km == KMessageBox::Cancel ) | 1656 | if ( km == KMessageBox::Cancel ) |
1657 | return false; | 1657 | return false; |
1658 | if ( km == KMessageBox::Yes ) | 1658 | if ( km == KMessageBox::Yes ) |
1659 | return true; | 1659 | return true; |
1660 | 1660 | ||
1661 | setSyncDevice("deleteaftersync" ); | 1661 | setSyncDevice("deleteaftersync" ); |
1662 | mSyncManager->mAskForPreferences = true; | 1662 | mSyncManager->mAskForPreferences = true; |
1663 | mSyncManager->mSyncAlgoPrefs = 3; | 1663 | mSyncManager->mSyncAlgoPrefs = 3; |
1664 | mSyncManager->mWriteBackFile = false; | 1664 | mSyncManager->mWriteBackFile = false; |
1665 | mSyncManager->mWriteBackExistingOnly = false; | 1665 | mSyncManager->mWriteBackExistingOnly = false; |
1666 | mSyncManager->mShowSyncSummary = false; | 1666 | mSyncManager->mShowSyncSummary = false; |
1667 | syncCalendar( fn, 3 ); | 1667 | syncCalendar( fn, 3 ); |
1668 | Event * e = getLastSyncEvent(); | 1668 | Event * e = getLastSyncEvent(); |
1669 | mCalendar->deleteEvent ( e ); | 1669 | mCalendar->deleteEvent ( e ); |
1670 | updateView(); | 1670 | updateView(); |
1671 | return true; | 1671 | return true; |
1672 | } | 1672 | } |
1673 | 1673 | ||
1674 | bool CalendarView::saveCalendar( QString filename ) | 1674 | bool CalendarView::saveCalendar( QString filename ) |
1675 | { | 1675 | { |
1676 | 1676 | ||
1677 | // Store back all unsaved data into calendar object | 1677 | // Store back all unsaved data into calendar object |
1678 | // qDebug("file %s %d ", filename.latin1() , mViewManager->currentView() ); | 1678 | // qDebug("file %s %d ", filename.latin1() , mViewManager->currentView() ); |
1679 | if ( mViewManager->currentView() ) | 1679 | if ( mViewManager->currentView() ) |
1680 | mViewManager->currentView()->flushView(); | 1680 | mViewManager->currentView()->flushView(); |
1681 | 1681 | ||
1682 | 1682 | ||
1683 | QDateTime lfv = QDateTime::currentDateTime().addSecs( -2); | 1683 | QDateTime lfv = QDateTime::currentDateTime().addSecs( -2); |
1684 | mStorage->setSaveFormat( new ICalFormat() ); | 1684 | mStorage->setSaveFormat( new ICalFormat() ); |
1685 | mStorage->setFileName( filename ); | 1685 | mStorage->setFileName( filename ); |
1686 | bool success; | 1686 | bool success; |
1687 | success = mStorage->save(); | 1687 | success = mStorage->save(); |
1688 | if ( !success ) { | 1688 | if ( !success ) { |
1689 | return false; | 1689 | return false; |
1690 | } | 1690 | } |
1691 | if ( filename == MainWindow::defaultFileName() ) { | 1691 | if ( filename == MainWindow::defaultFileName() ) { |
1692 | setLoadedFileVersion( lfv ); | 1692 | setLoadedFileVersion( lfv ); |
1693 | watchSavedFile(); | 1693 | watchSavedFile(); |
1694 | } | 1694 | } |
1695 | return true; | 1695 | return true; |
1696 | } | 1696 | } |
1697 | 1697 | ||
1698 | void CalendarView::closeCalendar() | 1698 | void CalendarView::closeCalendar() |
1699 | { | 1699 | { |
1700 | 1700 | ||
1701 | // child windows no longer valid | 1701 | // child windows no longer valid |
1702 | emit closingDown(); | 1702 | emit closingDown(); |
1703 | 1703 | ||
1704 | mCalendar->close(); | 1704 | mCalendar->close(); |
1705 | setModified(false); | 1705 | setModified(false); |
1706 | updateView(); | 1706 | updateView(); |
1707 | } | 1707 | } |
1708 | 1708 | ||
1709 | void CalendarView::archiveCalendar() | 1709 | void CalendarView::archiveCalendar() |
1710 | { | 1710 | { |
1711 | mDialogManager->showArchiveDialog(); | 1711 | mDialogManager->showArchiveDialog(); |
1712 | } | 1712 | } |
1713 | 1713 | ||
1714 | 1714 | ||
1715 | void CalendarView::readSettings() | 1715 | void CalendarView::readSettings() |
1716 | { | 1716 | { |
1717 | 1717 | ||
1718 | 1718 | ||
1719 | // mViewManager->showAgendaView(); | 1719 | // mViewManager->showAgendaView(); |
1720 | QString str; | 1720 | QString str; |
1721 | //qDebug("CalendarView::readSettings() "); | 1721 | //qDebug("CalendarView::readSettings() "); |
1722 | // read settings from the KConfig, supplying reasonable | 1722 | // read settings from the KConfig, supplying reasonable |
1723 | // defaults where none are to be found | 1723 | // defaults where none are to be found |
1724 | KConfig *config = KOGlobals::config(); | 1724 | KConfig *config = KOGlobals::config(); |
1725 | #ifndef KORG_NOSPLITTER | 1725 | #ifndef KORG_NOSPLITTER |
1726 | config->setGroup("KOrganizer Geometry"); | 1726 | config->setGroup("KOrganizer Geometry"); |
1727 | 1727 | ||
1728 | QValueList<int> sizes = config->readIntListEntry("Separator1"); | 1728 | QValueList<int> sizes = config->readIntListEntry("Separator1"); |
1729 | if (sizes.count() != 2) { | 1729 | if (sizes.count() != 2) { |
1730 | sizes << mDateNavigator->minimumSizeHint().width(); | 1730 | sizes << mDateNavigator->minimumSizeHint().width(); |
1731 | sizes << 300; | 1731 | sizes << 300; |
1732 | } | 1732 | } |
1733 | mPanner->setSizes(sizes); | 1733 | mPanner->setSizes(sizes); |
1734 | 1734 | ||
1735 | sizes = config->readIntListEntry("Separator2"); | 1735 | sizes = config->readIntListEntry("Separator2"); |
1736 | if ( ( mResourceView && sizes.count() == 4 ) || | 1736 | if ( ( mResourceView && sizes.count() == 4 ) || |
1737 | ( !mResourceView && sizes.count() == 3 ) ) { | 1737 | ( !mResourceView && sizes.count() == 3 ) ) { |
1738 | mLeftSplitter->setSizes(sizes); | 1738 | mLeftSplitter->setSizes(sizes); |
1739 | } | 1739 | } |
1740 | #endif | 1740 | #endif |
1741 | globalFlagBlockAgenda = 1; | 1741 | globalFlagBlockAgenda = 1; |
1742 | mViewManager->showAgendaView(); | 1742 | mViewManager->showAgendaView(); |
1743 | //mViewManager->readSettings( config ); | 1743 | //mViewManager->readSettings( config ); |
1744 | mTodoList->restoreLayout(config,QString("Todo Layout")); | 1744 | mTodoList->restoreLayout(config,QString("Todo Layout")); |
1745 | readFilterSettings(config); | 1745 | readFilterSettings(config); |
1746 | config->setGroup( "Views" ); | 1746 | config->setGroup( "Views" ); |
1747 | int dateCount = config->readNumEntry( "ShownDatesCount", 7 ); | 1747 | int dateCount = config->readNumEntry( "ShownDatesCount", 7 ); |
1748 | if ( dateCount == 5 ) mNavigator->selectWorkWeek(); | 1748 | if ( dateCount == 5 ) mNavigator->selectWorkWeek(); |
1749 | else if ( dateCount == 7 ) mNavigator->selectWeek(); | 1749 | else if ( dateCount == 7 ) mNavigator->selectWeek(); |
1750 | else mNavigator->selectDates( dateCount ); | 1750 | else mNavigator->selectDates( dateCount ); |
1751 | // mViewManager->readSettings( config ); | 1751 | // mViewManager->readSettings( config ); |
1752 | updateConfig(); | 1752 | updateConfig(); |
1753 | globalFlagBlockAgenda = 2; | 1753 | globalFlagBlockAgenda = 2; |
1754 | mViewManager->readSettings( config ); | 1754 | mViewManager->readSettings( config ); |
1755 | #ifdef DESKTOP_VERSION | 1755 | #ifdef DESKTOP_VERSION |
1756 | config->setGroup("WidgetLayout"); | 1756 | config->setGroup("WidgetLayout"); |
1757 | QStringList list; | 1757 | QStringList list; |
1758 | list = config->readListEntry("MainLayout"); | 1758 | list = config->readListEntry("MainLayout"); |
1759 | int x,y,w,h; | 1759 | int x,y,w,h; |
1760 | if ( ! list.isEmpty() ) { | 1760 | if ( ! list.isEmpty() ) { |
1761 | x = list[0].toInt(); | 1761 | x = list[0].toInt(); |
1762 | y = list[1].toInt(); | 1762 | y = list[1].toInt(); |
1763 | w = list[2].toInt(); | 1763 | w = list[2].toInt(); |
1764 | h = list[3].toInt(); | 1764 | h = list[3].toInt(); |
1765 | topLevelWidget()->setGeometry(x,y,w,h); | 1765 | topLevelWidget()->setGeometry(x,y,w,h); |
1766 | 1766 | ||
1767 | } else { | 1767 | } else { |
1768 | topLevelWidget()->setGeometry( 40 ,40 , 640, 440); | 1768 | topLevelWidget()->setGeometry( 40 ,40 , 640, 440); |
1769 | } | 1769 | } |
1770 | list = config->readListEntry("EditEventLayout"); | 1770 | list = config->readListEntry("EditEventLayout"); |
1771 | if ( ! list.isEmpty() ) { | 1771 | if ( ! list.isEmpty() ) { |
1772 | x = list[0].toInt(); | 1772 | x = list[0].toInt(); |
1773 | y = list[1].toInt(); | 1773 | y = list[1].toInt(); |
1774 | w = list[2].toInt(); | 1774 | w = list[2].toInt(); |
1775 | h = list[3].toInt(); | 1775 | h = list[3].toInt(); |
1776 | mEventEditor->setGeometry(x,y,w,h); | 1776 | mEventEditor->setGeometry(x,y,w,h); |
1777 | 1777 | ||
1778 | } | 1778 | } |
1779 | list = config->readListEntry("EditTodoLayout"); | 1779 | list = config->readListEntry("EditTodoLayout"); |
1780 | if ( ! list.isEmpty() ) { | 1780 | if ( ! list.isEmpty() ) { |
1781 | x = list[0].toInt(); | 1781 | x = list[0].toInt(); |
1782 | y = list[1].toInt(); | 1782 | y = list[1].toInt(); |
1783 | w = list[2].toInt(); | 1783 | w = list[2].toInt(); |
1784 | h = list[3].toInt(); | 1784 | h = list[3].toInt(); |
1785 | mTodoEditor->setGeometry(x,y,w,h); | 1785 | mTodoEditor->setGeometry(x,y,w,h); |
1786 | 1786 | ||
1787 | } | 1787 | } |
1788 | list = config->readListEntry("ViewerLayout"); | 1788 | list = config->readListEntry("ViewerLayout"); |
1789 | if ( ! list.isEmpty() ) { | 1789 | if ( ! list.isEmpty() ) { |
1790 | x = list[0].toInt(); | 1790 | x = list[0].toInt(); |
1791 | y = list[1].toInt(); | 1791 | y = list[1].toInt(); |
1792 | w = list[2].toInt(); | 1792 | w = list[2].toInt(); |
1793 | h = list[3].toInt(); | 1793 | h = list[3].toInt(); |
1794 | getEventViewerDialog()->setGeometry(x,y,w,h); | 1794 | getEventViewerDialog()->setGeometry(x,y,w,h); |
1795 | } | 1795 | } |
1796 | #endif | 1796 | #endif |
1797 | 1797 | ||
1798 | } | 1798 | } |
1799 | 1799 | ||
1800 | 1800 | ||
1801 | void CalendarView::writeSettings() | 1801 | void CalendarView::writeSettings() |
1802 | { | 1802 | { |
1803 | // kdDebug() << "CalendarView::writeSettings" << endl; | 1803 | // kdDebug() << "CalendarView::writeSettings" << endl; |
1804 | 1804 | ||
1805 | KConfig *config = KOGlobals::config(); | 1805 | KConfig *config = KOGlobals::config(); |
1806 | 1806 | ||
1807 | #ifndef KORG_NOSPLITTER | 1807 | #ifndef KORG_NOSPLITTER |
1808 | config->setGroup("KOrganizer Geometry"); | 1808 | config->setGroup("KOrganizer Geometry"); |
1809 | 1809 | ||
1810 | QValueList<int> list = mPanner->sizes(); | 1810 | QValueList<int> list = mPanner->sizes(); |
1811 | config->writeEntry("Separator1",list); | 1811 | config->writeEntry("Separator1",list); |
1812 | 1812 | ||
1813 | list = mLeftSplitter->sizes(); | 1813 | list = mLeftSplitter->sizes(); |
1814 | config->writeEntry("Separator2",list); | 1814 | config->writeEntry("Separator2",list); |
1815 | #endif | 1815 | #endif |
1816 | 1816 | ||
1817 | mViewManager->writeSettings( config ); | 1817 | mViewManager->writeSettings( config ); |
1818 | mTodoList->saveLayout(config,QString("Todo Layout")); | 1818 | mTodoList->saveLayout(config,QString("Todo Layout")); |
1819 | mDialogManager->writeSettings( config ); | 1819 | mDialogManager->writeSettings( config ); |
1820 | //KOPrefs::instance()->usrWriteConfig(); | 1820 | //KOPrefs::instance()->usrWriteConfig(); |
1821 | KOPrefs::instance()->writeConfig(); | 1821 | KOPrefs::instance()->writeConfig(); |
1822 | 1822 | ||
1823 | writeFilterSettings(config); | 1823 | writeFilterSettings(config); |
1824 | 1824 | ||
1825 | config->setGroup( "Views" ); | 1825 | config->setGroup( "Views" ); |
1826 | config->writeEntry( "ShownDatesCount", mNavigator->selectedDates().count() ); | 1826 | config->writeEntry( "ShownDatesCount", mNavigator->selectedDates().count() ); |
1827 | 1827 | ||
1828 | #ifdef DESKTOP_VERSION | 1828 | #ifdef DESKTOP_VERSION |
1829 | config->setGroup("WidgetLayout"); | 1829 | config->setGroup("WidgetLayout"); |
1830 | QStringList list ;//= config->readListEntry("MainLayout"); | 1830 | QStringList list ;//= config->readListEntry("MainLayout"); |
1831 | int x,y,w,h; | 1831 | int x,y,w,h; |
1832 | QWidget* wid; | 1832 | QWidget* wid; |
1833 | wid = topLevelWidget(); | 1833 | wid = topLevelWidget(); |
1834 | x = wid->geometry().x(); | 1834 | x = wid->geometry().x(); |
1835 | y = wid->geometry().y(); | 1835 | y = wid->geometry().y(); |
1836 | w = wid->width(); | 1836 | w = wid->width(); |
1837 | h = wid->height(); | 1837 | h = wid->height(); |
1838 | list.clear(); | 1838 | list.clear(); |
1839 | list << QString::number( x ); | 1839 | list << QString::number( x ); |
1840 | list << QString::number( y ); | 1840 | list << QString::number( y ); |
1841 | list << QString::number( w ); | 1841 | list << QString::number( w ); |
1842 | list << QString::number( h ); | 1842 | list << QString::number( h ); |
1843 | config->writeEntry("MainLayout",list ); | 1843 | config->writeEntry("MainLayout",list ); |
1844 | 1844 | ||
1845 | wid = mEventEditor; | 1845 | wid = mEventEditor; |
1846 | x = wid->geometry().x(); | 1846 | x = wid->geometry().x(); |
1847 | y = wid->geometry().y(); | 1847 | y = wid->geometry().y(); |
1848 | w = wid->width(); | 1848 | w = wid->width(); |
1849 | h = wid->height(); | 1849 | h = wid->height(); |
1850 | list.clear(); | 1850 | list.clear(); |
1851 | list << QString::number( x ); | 1851 | list << QString::number( x ); |
1852 | list << QString::number( y ); | 1852 | list << QString::number( y ); |
1853 | list << QString::number( w ); | 1853 | list << QString::number( w ); |
1854 | list << QString::number( h ); | 1854 | list << QString::number( h ); |
1855 | config->writeEntry("EditEventLayout",list ); | 1855 | config->writeEntry("EditEventLayout",list ); |
1856 | 1856 | ||
1857 | wid = mTodoEditor; | 1857 | wid = mTodoEditor; |
1858 | x = wid->geometry().x(); | 1858 | x = wid->geometry().x(); |
1859 | y = wid->geometry().y(); | 1859 | y = wid->geometry().y(); |
1860 | w = wid->width(); | 1860 | w = wid->width(); |
1861 | h = wid->height(); | 1861 | h = wid->height(); |
1862 | list.clear(); | 1862 | list.clear(); |
1863 | list << QString::number( x ); | 1863 | list << QString::number( x ); |
1864 | list << QString::number( y ); | 1864 | list << QString::number( y ); |
1865 | list << QString::number( w ); | 1865 | list << QString::number( w ); |
1866 | list << QString::number( h ); | 1866 | list << QString::number( h ); |
1867 | config->writeEntry("EditTodoLayout",list ); | 1867 | config->writeEntry("EditTodoLayout",list ); |
1868 | wid = getEventViewerDialog(); | 1868 | wid = getEventViewerDialog(); |
1869 | x = wid->geometry().x(); | 1869 | x = wid->geometry().x(); |
1870 | y = wid->geometry().y(); | 1870 | y = wid->geometry().y(); |
1871 | w = wid->width(); | 1871 | w = wid->width(); |
1872 | h = wid->height(); | 1872 | h = wid->height(); |
1873 | list.clear(); | 1873 | list.clear(); |
1874 | list << QString::number( x ); | 1874 | list << QString::number( x ); |
1875 | list << QString::number( y ); | 1875 | list << QString::number( y ); |
1876 | list << QString::number( w ); | 1876 | list << QString::number( w ); |
1877 | list << QString::number( h ); | 1877 | list << QString::number( h ); |
1878 | config->writeEntry("ViewerLayout",list ); | 1878 | config->writeEntry("ViewerLayout",list ); |
1879 | wid = mDialogManager->getSearchDialog(); | 1879 | wid = mDialogManager->getSearchDialog(); |
1880 | if ( wid ) { | 1880 | if ( wid ) { |
1881 | x = wid->geometry().x(); | 1881 | x = wid->geometry().x(); |
1882 | y = wid->geometry().y(); | 1882 | y = wid->geometry().y(); |
1883 | w = wid->width(); | 1883 | w = wid->width(); |
1884 | h = wid->height(); | 1884 | h = wid->height(); |
1885 | list.clear(); | 1885 | list.clear(); |
1886 | list << QString::number( x ); | 1886 | list << QString::number( x ); |
1887 | list << QString::number( y ); | 1887 | list << QString::number( y ); |
1888 | list << QString::number( w ); | 1888 | list << QString::number( w ); |
1889 | list << QString::number( h ); | 1889 | list << QString::number( h ); |
1890 | config->writeEntry("SearchLayout",list ); | 1890 | config->writeEntry("SearchLayout",list ); |
1891 | } | 1891 | } |
1892 | #endif | 1892 | #endif |
1893 | 1893 | ||
1894 | 1894 | ||
1895 | config->sync(); | 1895 | config->sync(); |
1896 | } | 1896 | } |
1897 | 1897 | ||
1898 | void CalendarView::readFilterSettings(KConfig *config) | 1898 | void CalendarView::readFilterSettings(KConfig *config) |
1899 | { | 1899 | { |
1900 | // kdDebug() << "CalendarView::readFilterSettings()" << endl; | 1900 | // kdDebug() << "CalendarView::readFilterSettings()" << endl; |
1901 | 1901 | ||
1902 | mFilters.clear(); | 1902 | mFilters.clear(); |
1903 | 1903 | ||
1904 | config->setGroup("General"); | 1904 | config->setGroup("General"); |
1905 | QStringList filterList = config->readListEntry("CalendarFilters"); | 1905 | QStringList filterList = config->readListEntry("CalendarFilters"); |
1906 | 1906 | ||
1907 | QStringList::ConstIterator it = filterList.begin(); | 1907 | QStringList::ConstIterator it = filterList.begin(); |
1908 | QStringList::ConstIterator end = filterList.end(); | 1908 | QStringList::ConstIterator end = filterList.end(); |
1909 | while(it != end) { | 1909 | while(it != end) { |
1910 | // kdDebug() << " filter: " << (*it) << endl; | 1910 | // kdDebug() << " filter: " << (*it) << endl; |
1911 | 1911 | ||
1912 | CalFilter *filter; | 1912 | CalFilter *filter; |
1913 | filter = new CalFilter(*it); | 1913 | filter = new CalFilter(*it); |
1914 | config->setGroup("Filter_" + (*it)); | 1914 | config->setGroup("Filter_" + (*it)); |
1915 | //qDebug("readFilterSettings %d ",config->readNumEntry("Criteria",0) ); | 1915 | //qDebug("readFilterSettings %d ",config->readNumEntry("Criteria",0) ); |
1916 | filter->setCriteria(config->readNumEntry("Criteria",0)); | 1916 | filter->setCriteria(config->readNumEntry("Criteria",0)); |
1917 | filter->setCategoryList(config->readListEntry("CategoryList")); | 1917 | filter->setCategoryList(config->readListEntry("CategoryList")); |
1918 | mFilters.append(filter); | 1918 | mFilters.append(filter); |
1919 | 1919 | ||
1920 | ++it; | 1920 | ++it; |
1921 | } | 1921 | } |
1922 | 1922 | ||
1923 | if (mFilters.count() == 0) { | 1923 | if (mFilters.count() == 0) { |
1924 | CalFilter *filter = new CalFilter(i18n("Default")); | 1924 | CalFilter *filter = new CalFilter(i18n("Default")); |
1925 | mFilters.append(filter); | 1925 | mFilters.append(filter); |
1926 | } | 1926 | } |
1927 | mFilterView->updateFilters(); | 1927 | mFilterView->updateFilters(); |
1928 | config->setGroup("FilterView"); | 1928 | config->setGroup("FilterView"); |
1929 | 1929 | ||
1930 | mFilterView->blockSignals(true); | 1930 | mFilterView->blockSignals(true); |
1931 | mFilterView->setFiltersEnabled(config->readBoolEntry("FilterEnabled")); | 1931 | mFilterView->setFiltersEnabled(config->readBoolEntry("FilterEnabled")); |
1932 | mFilterView->setSelectedFilter(config->readEntry("Current Filter")); | 1932 | mFilterView->setSelectedFilter(config->readEntry("Current Filter")); |
1933 | mFilterView->blockSignals(false); | 1933 | mFilterView->blockSignals(false); |
1934 | // We do it manually to avoid it being done twice by the above calls | 1934 | // We do it manually to avoid it being done twice by the above calls |
1935 | updateFilter(); | 1935 | updateFilter(); |
1936 | } | 1936 | } |
1937 | 1937 | ||
1938 | void CalendarView::writeFilterSettings(KConfig *config) | 1938 | void CalendarView::writeFilterSettings(KConfig *config) |
1939 | { | 1939 | { |
1940 | // kdDebug() << "CalendarView::writeFilterSettings()" << endl; | 1940 | // kdDebug() << "CalendarView::writeFilterSettings()" << endl; |
1941 | 1941 | ||
1942 | QStringList filterList; | 1942 | QStringList filterList; |
1943 | 1943 | ||
1944 | CalFilter *filter = mFilters.first(); | 1944 | CalFilter *filter = mFilters.first(); |
1945 | while(filter) { | 1945 | while(filter) { |
1946 | // kdDebug() << " fn: " << filter->name() << endl; | 1946 | // kdDebug() << " fn: " << filter->name() << endl; |
1947 | filterList << filter->name(); | 1947 | filterList << filter->name(); |
1948 | config->setGroup("Filter_" + filter->name()); | 1948 | config->setGroup("Filter_" + filter->name()); |
1949 | config->writeEntry("Criteria",filter->criteria()); | 1949 | config->writeEntry("Criteria",filter->criteria()); |
1950 | config->writeEntry("CategoryList",filter->categoryList()); | 1950 | config->writeEntry("CategoryList",filter->categoryList()); |
1951 | filter = mFilters.next(); | 1951 | filter = mFilters.next(); |
1952 | } | 1952 | } |
1953 | config->setGroup("General"); | 1953 | config->setGroup("General"); |
1954 | config->writeEntry("CalendarFilters",filterList); | 1954 | config->writeEntry("CalendarFilters",filterList); |
1955 | 1955 | ||
1956 | config->setGroup("FilterView"); | 1956 | config->setGroup("FilterView"); |
1957 | config->writeEntry("FilterEnabled",mFilterView->filtersEnabled()); | 1957 | config->writeEntry("FilterEnabled",mFilterView->filtersEnabled()); |
1958 | config->writeEntry("Current Filter",mFilterView->selectedFilter()->name()); | 1958 | config->writeEntry("Current Filter",mFilterView->selectedFilter()->name()); |
1959 | } | 1959 | } |
1960 | 1960 | ||
1961 | 1961 | ||
1962 | void CalendarView::goToday() | 1962 | void CalendarView::goToday() |
1963 | { | 1963 | { |
1964 | mNavigator->selectToday(); | 1964 | mNavigator->selectToday(); |
1965 | } | 1965 | } |
1966 | 1966 | ||
1967 | void CalendarView::goNext() | 1967 | void CalendarView::goNext() |
1968 | { | 1968 | { |
1969 | mNavigator->selectNext(); | 1969 | mNavigator->selectNext(); |
1970 | } | 1970 | } |
1971 | 1971 | ||
1972 | void CalendarView::goPrevious() | 1972 | void CalendarView::goPrevious() |
1973 | { | 1973 | { |
1974 | mNavigator->selectPrevious(); | 1974 | mNavigator->selectPrevious(); |
1975 | } | 1975 | } |
1976 | void CalendarView::goNextMonth() | 1976 | void CalendarView::goNextMonth() |
1977 | { | 1977 | { |
1978 | mNavigator->selectNextMonth(); | 1978 | mNavigator->selectNextMonth(); |
1979 | } | 1979 | } |
1980 | 1980 | ||
1981 | void CalendarView::goPreviousMonth() | 1981 | void CalendarView::goPreviousMonth() |
1982 | { | 1982 | { |
1983 | mNavigator->selectPreviousMonth(); | 1983 | mNavigator->selectPreviousMonth(); |
1984 | } | 1984 | } |
1985 | void CalendarView::writeLocale() | 1985 | void CalendarView::writeLocale() |
1986 | { | 1986 | { |
1987 | //KPimGlobalPrefs::instance()->setGlobalConfig(); | 1987 | //KPimGlobalPrefs::instance()->setGlobalConfig(); |
1988 | #if 0 | 1988 | #if 0 |
1989 | KGlobal::locale()->setHore24Format( !KOPrefs::instance()->mPreferredTime ); | 1989 | KGlobal::locale()->setHore24Format( !KOPrefs::instance()->mPreferredTime ); |
1990 | KGlobal::locale()->setWeekStartMonday( !KOPrefs::instance()->mWeekStartsOnSunday ); | 1990 | KGlobal::locale()->setWeekStartMonday( !KOPrefs::instance()->mWeekStartsOnSunday ); |
1991 | KGlobal::locale()->setIntDateFormat( (KLocale::IntDateFormat)KOPrefs::instance()->mPreferredDate ); | 1991 | KGlobal::locale()->setIntDateFormat( (KLocale::IntDateFormat)KOPrefs::instance()->mPreferredDate ); |
1992 | KGlobal::locale()->setLanguage( KOPrefs::instance()->mPreferredLanguage ); | 1992 | KGlobal::locale()->setLanguage( KOPrefs::instance()->mPreferredLanguage ); |
1993 | QString dummy = KOPrefs::instance()->mUserDateFormatLong; | 1993 | QString dummy = KOPrefs::instance()->mUserDateFormatLong; |
1994 | KGlobal::locale()->setDateFormat(dummy.replace( QRegExp("K"), QString(",") )); | 1994 | KGlobal::locale()->setDateFormat(dummy.replace( QRegExp("K"), QString(",") )); |
1995 | dummy = KOPrefs::instance()->mUserDateFormatShort; | 1995 | dummy = KOPrefs::instance()->mUserDateFormatShort; |
1996 | KGlobal::locale()->setDateFormatShort(dummy.replace( QRegExp("K"), QString(",") )); | 1996 | KGlobal::locale()->setDateFormatShort(dummy.replace( QRegExp("K"), QString(",") )); |
1997 | KGlobal::locale()->setDaylightSaving( KOPrefs::instance()->mUseDaylightsaving, | 1997 | KGlobal::locale()->setDaylightSaving( KOPrefs::instance()->mUseDaylightsaving, |
1998 | KOPrefs::instance()->mDaylightsavingStart, | 1998 | KOPrefs::instance()->mDaylightsavingStart, |
1999 | KOPrefs::instance()->mDaylightsavingEnd ); | 1999 | KOPrefs::instance()->mDaylightsavingEnd ); |
2000 | KGlobal::locale()->setTimezone( KOPrefs::instance()->mTimeZoneId ); | 2000 | KGlobal::locale()->setTimezone( KOPrefs::instance()->mTimeZoneId ); |
2001 | #endif | 2001 | #endif |
2002 | } | 2002 | } |
2003 | void CalendarView::updateConfig() | 2003 | void CalendarView::updateConfig() |
2004 | { | 2004 | { |
2005 | writeLocale(); | 2005 | writeLocale(); |
2006 | if ( KOPrefs::instance()->mUseAppColors ) | 2006 | if ( KOPrefs::instance()->mUseAppColors ) |
2007 | QApplication::setPalette( QPalette (KOPrefs::instance()->mAppColor1, KOPrefs::instance()->mAppColor2), true ); | 2007 | QApplication::setPalette( QPalette (KOPrefs::instance()->mAppColor1, KOPrefs::instance()->mAppColor2), true ); |
2008 | emit configChanged(); | 2008 | emit configChanged(); |
2009 | mTodoList->updateConfig(); | 2009 | mTodoList->updateConfig(); |
2010 | // mDateNavigator->setFont ( KOPrefs::instance()->mDateNavigatorFont); | 2010 | // mDateNavigator->setFont ( KOPrefs::instance()->mDateNavigatorFont); |
2011 | mCalendar->setTimeZoneId(KOPrefs::instance()->mTimeZoneId); | 2011 | mCalendar->setTimeZoneId(KOPrefs::instance()->mTimeZoneId); |
2012 | // To make the "fill window" configurations work | 2012 | // To make the "fill window" configurations work |
2013 | //mViewManager->raiseCurrentView(); | 2013 | //mViewManager->raiseCurrentView(); |
2014 | } | 2014 | } |
2015 | 2015 | ||
2016 | 2016 | ||
2017 | void CalendarView::eventChanged(Event *event) | 2017 | void CalendarView::eventChanged(Event *event) |
2018 | { | 2018 | { |
2019 | changeEventDisplay(event,KOGlobals::EVENTEDITED); | 2019 | changeEventDisplay(event,KOGlobals::EVENTEDITED); |
2020 | //updateUnmanagedViews(); | 2020 | //updateUnmanagedViews(); |
2021 | } | 2021 | } |
2022 | 2022 | ||
2023 | void CalendarView::eventAdded(Event *event) | 2023 | void CalendarView::eventAdded(Event *event) |
2024 | { | 2024 | { |
2025 | changeEventDisplay(event,KOGlobals::EVENTADDED); | 2025 | changeEventDisplay(event,KOGlobals::EVENTADDED); |
2026 | } | 2026 | } |
2027 | 2027 | ||
2028 | void CalendarView::eventToBeDeleted(Event *) | 2028 | void CalendarView::eventToBeDeleted(Event *) |
2029 | { | 2029 | { |
2030 | kdDebug() << "CalendarView::eventToBeDeleted(): to be implemented" << endl; | 2030 | kdDebug() << "CalendarView::eventToBeDeleted(): to be implemented" << endl; |
2031 | } | 2031 | } |
2032 | 2032 | ||
2033 | void CalendarView::eventDeleted() | 2033 | void CalendarView::eventDeleted() |
2034 | { | 2034 | { |
2035 | changeEventDisplay(0,KOGlobals::EVENTDELETED); | 2035 | changeEventDisplay(0,KOGlobals::EVENTDELETED); |
2036 | } | 2036 | } |
2037 | void CalendarView::changeTodoDisplay(Todo *which, int action) | 2037 | void CalendarView::changeTodoDisplay(Todo *which, int action) |
2038 | { | 2038 | { |
2039 | changeIncidenceDisplay((Incidence *)which, action); | 2039 | changeIncidenceDisplay((Incidence *)which, action); |
2040 | mDateNavigator->updateView(); //LR | 2040 | mDateNavigator->updateView(); //LR |
2041 | //mDialogManager->updateSearchDialog(); | 2041 | //mDialogManager->updateSearchDialog(); |
2042 | 2042 | ||
2043 | if (which) { | 2043 | if (which) { |
2044 | mViewManager->updateWNview(); | 2044 | mViewManager->updateWNview(); |
2045 | //mTodoList->updateView(); | 2045 | //mTodoList->updateView(); |
2046 | } | 2046 | } |
2047 | 2047 | ||
2048 | } | 2048 | } |
2049 | 2049 | ||
2050 | void CalendarView::changeIncidenceDisplay(Incidence *which, int action) | 2050 | void CalendarView::changeIncidenceDisplay(Incidence *which, int action) |
2051 | { | 2051 | { |
2052 | updateUnmanagedViews(); | 2052 | updateUnmanagedViews(); |
2053 | //qDebug(" CalendarView::changeIncidenceDisplay++++++++++++++++++++++++++ %d %d ",which, action ); | 2053 | //qDebug(" CalendarView::changeIncidenceDisplay++++++++++++++++++++++++++ %d %d ",which, action ); |
2054 | if ( action == KOGlobals::EVENTDELETED ) { //delete | 2054 | if ( action == KOGlobals::EVENTDELETED ) { //delete |
2055 | mCalendar->checkAlarmForIncidence( 0, true ); | 2055 | mCalendar->checkAlarmForIncidence( 0, true ); |
2056 | if ( mEventViewerDialog ) | 2056 | if ( mEventViewerDialog ) |
2057 | mEventViewerDialog->hide(); | 2057 | mEventViewerDialog->hide(); |
2058 | } | 2058 | } |
2059 | else | 2059 | else |
2060 | mCalendar->checkAlarmForIncidence( which , false ); | 2060 | mCalendar->checkAlarmForIncidence( which , false ); |
2061 | } | 2061 | } |
2062 | 2062 | ||
2063 | // most of the changeEventDisplays() right now just call the view's | 2063 | // most of the changeEventDisplays() right now just call the view's |
2064 | // total update mode, but they SHOULD be recoded to be more refresh-efficient. | 2064 | // total update mode, but they SHOULD be recoded to be more refresh-efficient. |
2065 | void CalendarView::changeEventDisplay(Event *which, int action) | 2065 | void CalendarView::changeEventDisplay(Event *which, int action) |
2066 | { | 2066 | { |
2067 | // kdDebug() << "CalendarView::changeEventDisplay" << endl; | 2067 | // kdDebug() << "CalendarView::changeEventDisplay" << endl; |
2068 | changeIncidenceDisplay((Incidence *)which, action); | 2068 | changeIncidenceDisplay((Incidence *)which, action); |
2069 | mDateNavigator->updateView(); | 2069 | mDateNavigator->updateView(); |
2070 | //mDialogManager->updateSearchDialog(); | 2070 | //mDialogManager->updateSearchDialog(); |
2071 | 2071 | ||
2072 | if (which) { | 2072 | if (which) { |
2073 | // If there is an event view visible update the display | 2073 | // If there is an event view visible update the display |
2074 | mViewManager->currentView()->changeEventDisplay(which,action); | 2074 | mViewManager->currentView()->changeEventDisplay(which,action); |
2075 | // TODO: check, if update needed | 2075 | // TODO: check, if update needed |
2076 | // if (which->getTodoStatus()) { | 2076 | // if (which->getTodoStatus()) { |
2077 | mTodoList->updateView(); | 2077 | mTodoList->updateView(); |
2078 | // } | 2078 | // } |
2079 | } else { | 2079 | } else { |
2080 | mViewManager->currentView()->updateView(); | 2080 | mViewManager->currentView()->updateView(); |
2081 | } | 2081 | } |
2082 | } | 2082 | } |
2083 | 2083 | ||
2084 | 2084 | ||
2085 | void CalendarView::updateTodoViews() | 2085 | void CalendarView::updateTodoViews() |
2086 | { | 2086 | { |
2087 | 2087 | ||
2088 | mTodoList->updateView(); | 2088 | mTodoList->updateView(); |
2089 | mViewManager->currentView()->updateView(); | 2089 | mViewManager->currentView()->updateView(); |
2090 | 2090 | ||
2091 | } | 2091 | } |
2092 | 2092 | ||
2093 | 2093 | ||
2094 | void CalendarView::updateView(const QDate &start, const QDate &end) | 2094 | void CalendarView::updateView(const QDate &start, const QDate &end) |
2095 | { | 2095 | { |
2096 | mTodoList->updateView(); | 2096 | mTodoList->updateView(); |
2097 | mViewManager->updateView(start, end); | 2097 | mViewManager->updateView(start, end); |
2098 | //mDateNavigator->updateView(); | 2098 | //mDateNavigator->updateView(); |
2099 | } | 2099 | } |
2100 | 2100 | ||
2101 | void CalendarView::updateView() | 2101 | void CalendarView::updateView() |
2102 | { | 2102 | { |
2103 | DateList tmpList = mNavigator->selectedDates(); | 2103 | DateList tmpList = mNavigator->selectedDates(); |
2104 | 2104 | ||
2105 | // We assume that the navigator only selects consecutive days. | 2105 | // We assume that the navigator only selects consecutive days. |
2106 | updateView( tmpList.first(), tmpList.last() ); | 2106 | updateView( tmpList.first(), tmpList.last() ); |
2107 | } | 2107 | } |
2108 | 2108 | ||
2109 | void CalendarView::updateUnmanagedViews() | 2109 | void CalendarView::updateUnmanagedViews() |
2110 | { | 2110 | { |
2111 | mDateNavigator->updateDayMatrix(); | 2111 | mDateNavigator->updateDayMatrix(); |
2112 | } | 2112 | } |
2113 | 2113 | ||
2114 | int CalendarView::msgItemDelete() | 2114 | int CalendarView::msgItemDelete() |
2115 | { | 2115 | { |
2116 | return KMessageBox::warningContinueCancel(this, | 2116 | return KMessageBox::warningContinueCancel(this, |
2117 | i18n("This item will be\npermanently deleted."), | 2117 | i18n("This item will be\npermanently deleted."), |
2118 | i18n("KO/Pi Confirmation"),i18n("Delete")); | 2118 | i18n("KO/Pi Confirmation"),i18n("Delete")); |
2119 | } | 2119 | } |
2120 | 2120 | ||
2121 | 2121 | ||
2122 | void CalendarView::edit_cut() | 2122 | void CalendarView::edit_cut() |
2123 | { | 2123 | { |
2124 | Event *anEvent=0; | 2124 | Event *anEvent=0; |
2125 | 2125 | ||
2126 | Incidence *incidence = mViewManager->currentView()->selectedIncidences().first(); | 2126 | Incidence *incidence = mViewManager->currentView()->selectedIncidences().first(); |
2127 | 2127 | ||
2128 | if (mViewManager->currentView()->isEventView()) { | 2128 | if (mViewManager->currentView()->isEventView()) { |
2129 | if ( incidence && incidence->type() == "Event" ) { | 2129 | if ( incidence && incidence->type() == "Event" ) { |
2130 | anEvent = static_cast<Event *>(incidence); | 2130 | anEvent = static_cast<Event *>(incidence); |
2131 | } | 2131 | } |
2132 | } | 2132 | } |
2133 | 2133 | ||
2134 | if (!anEvent) { | 2134 | if (!anEvent) { |
2135 | KNotifyClient::beep(); | 2135 | KNotifyClient::beep(); |
2136 | return; | 2136 | return; |
2137 | } | 2137 | } |
2138 | DndFactory factory( mCalendar ); | 2138 | DndFactory factory( mCalendar ); |
2139 | factory.cutEvent(anEvent); | 2139 | factory.cutEvent(anEvent); |
2140 | changeEventDisplay(anEvent, KOGlobals::EVENTDELETED); | 2140 | changeEventDisplay(anEvent, KOGlobals::EVENTDELETED); |
2141 | } | 2141 | } |
2142 | 2142 | ||
2143 | void CalendarView::edit_copy() | 2143 | void CalendarView::edit_copy() |
2144 | { | 2144 | { |
2145 | Event *anEvent=0; | 2145 | Event *anEvent=0; |
2146 | 2146 | ||
2147 | Incidence *incidence = mViewManager->currentView()->selectedIncidences().first(); | 2147 | Incidence *incidence = mViewManager->currentView()->selectedIncidences().first(); |
2148 | 2148 | ||
2149 | if (mViewManager->currentView()->isEventView()) { | 2149 | if (mViewManager->currentView()->isEventView()) { |
2150 | if ( incidence && incidence->type() == "Event" ) { | 2150 | if ( incidence && incidence->type() == "Event" ) { |
2151 | anEvent = static_cast<Event *>(incidence); | 2151 | anEvent = static_cast<Event *>(incidence); |
2152 | } | 2152 | } |
2153 | } | 2153 | } |
2154 | 2154 | ||
2155 | if (!anEvent) { | 2155 | if (!anEvent) { |
2156 | KNotifyClient::beep(); | 2156 | KNotifyClient::beep(); |
2157 | return; | 2157 | return; |
2158 | } | 2158 | } |
2159 | DndFactory factory( mCalendar ); | 2159 | DndFactory factory( mCalendar ); |
2160 | factory.copyEvent(anEvent); | 2160 | factory.copyEvent(anEvent); |
2161 | } | 2161 | } |
2162 | 2162 | ||
2163 | void CalendarView::edit_paste() | 2163 | void CalendarView::edit_paste() |
2164 | { | 2164 | { |
2165 | QDate date = mNavigator->selectedDates().first(); | 2165 | QDate date = mNavigator->selectedDates().first(); |
2166 | 2166 | ||
2167 | DndFactory factory( mCalendar ); | 2167 | DndFactory factory( mCalendar ); |
2168 | Event *pastedEvent = factory.pasteEvent( date ); | 2168 | Event *pastedEvent = factory.pasteEvent( date ); |
2169 | 2169 | ||
2170 | changeEventDisplay( pastedEvent, KOGlobals::EVENTADDED ); | 2170 | changeEventDisplay( pastedEvent, KOGlobals::EVENTADDED ); |
2171 | } | 2171 | } |
2172 | 2172 | ||
2173 | void CalendarView::edit_options() | 2173 | void CalendarView::edit_options() |
2174 | { | 2174 | { |
2175 | mDialogManager->showOptionsDialog(); | 2175 | mDialogManager->showOptionsDialog(); |
2176 | //writeSettings(); | 2176 | //writeSettings(); |
2177 | } | 2177 | } |
2178 | 2178 | ||
2179 | void CalendarView::slotSelectPickerDate( QDate d) | 2179 | void CalendarView::slotSelectPickerDate( QDate d) |
2180 | { | 2180 | { |
2181 | mDateFrame->hide(); | 2181 | mDateFrame->hide(); |
2182 | if ( mDatePickerMode == 1 ) { | 2182 | if ( mDatePickerMode == 1 ) { |
2183 | mNavigator->slotDaySelect( d ); | 2183 | mNavigator->slotDaySelect( d ); |
2184 | } else if ( mDatePickerMode == 2 ) { | 2184 | } else if ( mDatePickerMode == 2 ) { |
2185 | if ( mMoveIncidence->type() == "Todo" ) { | 2185 | if ( mMoveIncidence->type() == "Todo" ) { |
2186 | Todo * to = (Todo *) mMoveIncidence; | 2186 | Todo * to = (Todo *) mMoveIncidence; |
2187 | QTime tim; | 2187 | QTime tim; |
2188 | if ( to->hasDueDate() ) | 2188 | if ( to->hasDueDate() ) |
2189 | tim = to->dtDue().time(); | 2189 | tim = to->dtDue().time(); |
2190 | else { | 2190 | else { |
2191 | tim = QTime ( 0,0,0 ); | 2191 | tim = QTime ( 0,0,0 ); |
2192 | to->setFloats( true ); | 2192 | to->setFloats( true ); |
2193 | to->setHasDueDate( true ); | 2193 | to->setHasDueDate( true ); |
2194 | } | 2194 | } |
2195 | QDateTime dt ( d,tim ); | 2195 | QDateTime dt ( d,tim ); |
2196 | to->setDtDue( dt ); | 2196 | to->setDtDue( dt ); |
2197 | todoChanged( to ); | 2197 | todoChanged( to ); |
2198 | } else { | 2198 | } else { |
2199 | QTime tim = mMoveIncidence->dtStart().time(); | 2199 | QTime tim = mMoveIncidence->dtStart().time(); |
2200 | int secs = mMoveIncidence->dtStart().secsTo( mMoveIncidence->dtEnd()); | 2200 | int secs = mMoveIncidence->dtStart().secsTo( mMoveIncidence->dtEnd()); |
2201 | QDateTime dt ( d,tim ); | 2201 | QDateTime dt ( d,tim ); |
2202 | mMoveIncidence->setDtStart( dt ); | 2202 | mMoveIncidence->setDtStart( dt ); |
2203 | ((Event*)mMoveIncidence)->setDtEnd( dt.addSecs( secs ) ); | 2203 | ((Event*)mMoveIncidence)->setDtEnd( dt.addSecs( secs ) ); |
2204 | changeEventDisplay((Event*)mMoveIncidence, KOGlobals::EVENTEDITED); | 2204 | changeEventDisplay((Event*)mMoveIncidence, KOGlobals::EVENTEDITED); |
2205 | } | 2205 | } |
2206 | 2206 | ||
2207 | mMoveIncidence->setRevision( mMoveIncidence->revision()+1 ); | 2207 | mMoveIncidence->setRevision( mMoveIncidence->revision()+1 ); |
2208 | } | 2208 | } |
2209 | } | 2209 | } |
2210 | 2210 | ||
2211 | void CalendarView::removeCategories() | 2211 | void CalendarView::removeCategories() |
2212 | { | 2212 | { |
2213 | QPtrList<Incidence> incList = mCalendar->rawIncidences(); | 2213 | QPtrList<Incidence> incList = mCalendar->rawIncidences(); |
2214 | QStringList catList = KOPrefs::instance()->mCustomCategories; | 2214 | QStringList catList = KOPrefs::instance()->mCustomCategories; |
2215 | QStringList catIncList; | 2215 | QStringList catIncList; |
2216 | QStringList newCatList; | 2216 | QStringList newCatList; |
2217 | Incidence* inc = incList.first(); | 2217 | Incidence* inc = incList.first(); |
2218 | int i; | 2218 | int i; |
2219 | int count = 0; | 2219 | int count = 0; |
2220 | while ( inc ) { | 2220 | while ( inc ) { |
2221 | newCatList.clear(); | 2221 | newCatList.clear(); |
2222 | catIncList = inc->categories() ; | 2222 | catIncList = inc->categories() ; |
2223 | for( i = 0; i< catIncList.count(); ++i ) { | 2223 | for( i = 0; i< catIncList.count(); ++i ) { |
2224 | if ( catList.contains (catIncList[i])) | 2224 | if ( catList.contains (catIncList[i])) |
2225 | newCatList.append( catIncList[i] ); | 2225 | newCatList.append( catIncList[i] ); |
2226 | } | 2226 | } |
2227 | newCatList.sort(); | 2227 | newCatList.sort(); |
2228 | inc->setCategories( newCatList.join(",") ); | 2228 | inc->setCategories( newCatList.join(",") ); |
2229 | inc = incList.next(); | 2229 | inc = incList.next(); |
2230 | } | 2230 | } |
2231 | } | 2231 | } |
2232 | 2232 | ||
2233 | int CalendarView::addCategories() | 2233 | int CalendarView::addCategories() |
2234 | { | 2234 | { |
2235 | QPtrList<Incidence> incList = mCalendar->rawIncidences(); | 2235 | QPtrList<Incidence> incList = mCalendar->rawIncidences(); |
2236 | QStringList catList = KOPrefs::instance()->mCustomCategories; | 2236 | QStringList catList = KOPrefs::instance()->mCustomCategories; |
2237 | QStringList catIncList; | 2237 | QStringList catIncList; |
2238 | Incidence* inc = incList.first(); | 2238 | Incidence* inc = incList.first(); |
2239 | int i; | 2239 | int i; |
2240 | int count = 0; | 2240 | int count = 0; |
2241 | while ( inc ) { | 2241 | while ( inc ) { |
2242 | catIncList = inc->categories() ; | 2242 | catIncList = inc->categories() ; |
2243 | for( i = 0; i< catIncList.count(); ++i ) { | 2243 | for( i = 0; i< catIncList.count(); ++i ) { |
2244 | if ( !catList.contains (catIncList[i])) { | 2244 | if ( !catList.contains (catIncList[i])) { |
2245 | catList.append( catIncList[i] ); | 2245 | catList.append( catIncList[i] ); |
2246 | //qDebug("add cat %s ", catIncList[i].latin1()); | 2246 | //qDebug("add cat %s ", catIncList[i].latin1()); |
2247 | ++count; | 2247 | ++count; |
2248 | } | 2248 | } |
2249 | } | 2249 | } |
2250 | inc = incList.next(); | 2250 | inc = incList.next(); |
2251 | } | 2251 | } |
2252 | catList.sort(); | 2252 | catList.sort(); |
2253 | KOPrefs::instance()->mCustomCategories = catList; | 2253 | KOPrefs::instance()->mCustomCategories = catList; |
2254 | return count; | 2254 | return count; |
2255 | } | 2255 | } |
2256 | 2256 | ||
2257 | void CalendarView::manageCategories() | 2257 | void CalendarView::manageCategories() |
2258 | { | 2258 | { |
2259 | KOCatPrefs* cp = new KOCatPrefs(); | 2259 | KOCatPrefs* cp = new KOCatPrefs(); |
2260 | cp->show(); | 2260 | cp->show(); |
2261 | int w =cp->sizeHint().width() ; | 2261 | int w =cp->sizeHint().width() ; |
2262 | int h = cp->sizeHint().height() ; | 2262 | int h = cp->sizeHint().height() ; |
2263 | int dw = QApplication::desktop()->width(); | 2263 | int dw = QApplication::desktop()->width(); |
2264 | int dh = QApplication::desktop()->height(); | 2264 | int dh = QApplication::desktop()->height(); |
2265 | cp->setGeometry( (dw-w)/2, (dh - h )/2 ,w,h ); | 2265 | cp->setGeometry( (dw-w)/2, (dh - h )/2 ,w,h ); |
2266 | if ( !cp->exec() ) { | 2266 | if ( !cp->exec() ) { |
2267 | delete cp; | 2267 | delete cp; |
2268 | return; | 2268 | return; |
2269 | } | 2269 | } |
2270 | int count = 0; | 2270 | int count = 0; |
2271 | if ( cp->addCat() ) { | 2271 | if ( cp->addCat() ) { |
2272 | count = addCategories(); | 2272 | count = addCategories(); |
2273 | if ( count ) { | 2273 | if ( count ) { |
2274 | topLevelWidget()->setCaption(QString::number( count )+ i18n(" Categories added to list! ")); | 2274 | topLevelWidget()->setCaption(QString::number( count )+ i18n(" Categories added to list! ")); |
2275 | writeSettings(); | 2275 | writeSettings(); |
2276 | } | 2276 | } |
2277 | } else { | 2277 | } else { |
2278 | removeCategories(); | 2278 | removeCategories(); |
2279 | updateView(); | 2279 | updateView(); |
2280 | } | 2280 | } |
2281 | delete cp; | 2281 | delete cp; |
2282 | } | 2282 | } |
2283 | 2283 | ||
2284 | void CalendarView::beamIncidence(Incidence * Inc) | 2284 | void CalendarView::beamIncidence(Incidence * Inc) |
2285 | { | 2285 | { |
2286 | QPtrList<Incidence> delSel ; | 2286 | QPtrList<Incidence> delSel ; |
2287 | delSel.append(Inc); | 2287 | delSel.append(Inc); |
2288 | beamIncidenceList( delSel ); | 2288 | beamIncidenceList( delSel ); |
2289 | } | 2289 | } |
2290 | void CalendarView::beamCalendar() | 2290 | void CalendarView::beamCalendar() |
2291 | { | 2291 | { |
2292 | QPtrList<Incidence> delSel = mCalendar->rawIncidences(); | 2292 | QPtrList<Incidence> delSel = mCalendar->rawIncidences(); |
2293 | //qDebug("beamCalendar() "); | 2293 | //qDebug("beamCalendar() "); |
2294 | beamIncidenceList( delSel ); | 2294 | beamIncidenceList( delSel ); |
2295 | } | 2295 | } |
2296 | void CalendarView::beamFilteredCalendar() | 2296 | void CalendarView::beamFilteredCalendar() |
2297 | { | 2297 | { |
2298 | QPtrList<Incidence> delSel = mCalendar->incidences(); | 2298 | QPtrList<Incidence> delSel = mCalendar->incidences(); |
2299 | //qDebug("beamFilteredCalendar() "); | 2299 | //qDebug("beamFilteredCalendar() "); |
2300 | beamIncidenceList( delSel ); | 2300 | beamIncidenceList( delSel ); |
2301 | } | 2301 | } |
2302 | void CalendarView::beamIncidenceList(QPtrList<Incidence> delSel ) | 2302 | void CalendarView::beamIncidenceList(QPtrList<Incidence> delSel ) |
2303 | { | 2303 | { |
2304 | if ( beamDialog->exec () == QDialog::Rejected ) | 2304 | if ( beamDialog->exec () == QDialog::Rejected ) |
2305 | return; | 2305 | return; |
2306 | 2306 | #ifdef DESKTOP_VERSION | |
2307 | QString fn = locateLocal( "tmp", "kopibeamfile" ); | ||
2308 | #else | ||
2307 | QString fn = "/tmp/kopibeamfile"; | 2309 | QString fn = "/tmp/kopibeamfile"; |
2310 | #endif | ||
2308 | QString mes; | 2311 | QString mes; |
2309 | bool createbup = true; | 2312 | bool createbup = true; |
2310 | if ( createbup ) { | 2313 | if ( createbup ) { |
2311 | QString description = "\n"; | 2314 | QString description = "\n"; |
2312 | CalendarLocal* cal = new CalendarLocal(); | 2315 | CalendarLocal* cal = new CalendarLocal(); |
2313 | if ( beamDialog->beamLocal() ) | 2316 | if ( beamDialog->beamLocal() ) |
2314 | cal->setLocalTime(); | 2317 | cal->setLocalTime(); |
2315 | else | 2318 | else |
2316 | cal->setTimeZoneId(KOPrefs::instance()->mTimeZoneId); | 2319 | cal->setTimeZoneId(KOPrefs::instance()->mTimeZoneId); |
2317 | Incidence *incidence = delSel.first(); | 2320 | Incidence *incidence = delSel.first(); |
2318 | bool addText = false; | 2321 | bool addText = false; |
2319 | if ( delSel.count() < 10 ) | 2322 | if ( delSel.count() < 10 ) |
2320 | addText = true; | 2323 | addText = true; |
2321 | else { | 2324 | else { |
2322 | description.sprintf(i18n(" %d items?"),delSel.count() ); | 2325 | description.sprintf(i18n(" %d items?"),delSel.count() ); |
2323 | } | 2326 | } |
2324 | while ( incidence ) { | 2327 | while ( incidence ) { |
2325 | Incidence *in = incidence->clone(); | 2328 | Incidence *in = incidence->clone(); |
2326 | if ( ! in->summary().isEmpty() ) { | 2329 | if ( ! in->summary().isEmpty() ) { |
2327 | in->setDescription(""); | 2330 | in->setDescription(""); |
2328 | } else { | 2331 | } else { |
2329 | in->setSummary( in->description().left(20)); | 2332 | in->setSummary( in->description().left(20)); |
2330 | in->setDescription(""); | 2333 | in->setDescription(""); |
2331 | } | 2334 | } |
2332 | if ( addText ) | 2335 | if ( addText ) |
2333 | description += in->summary() + "\n"; | 2336 | description += in->summary() + "\n"; |
2334 | cal->addIncidence( in ); | 2337 | cal->addIncidence( in ); |
2335 | incidence = delSel.next(); | 2338 | incidence = delSel.next(); |
2336 | } | 2339 | } |
2337 | if ( beamDialog->beamVcal() ) { | 2340 | if ( beamDialog->beamVcal() ) { |
2338 | fn += ".vcs"; | 2341 | fn += ".vcs"; |
2339 | FileStorage storage( cal, fn, new VCalFormat ); | 2342 | FileStorage storage( cal, fn, new VCalFormat ); |
2340 | storage.save(); | 2343 | storage.save(); |
2341 | } else { | 2344 | } else { |
2342 | fn += ".ics"; | 2345 | fn += ".ics"; |
2343 | FileStorage storage( cal, fn, new ICalFormat( ) ); | 2346 | FileStorage storage( cal, fn, new ICalFormat( ) ); |
2344 | storage.save(); | 2347 | storage.save(); |
2345 | } | 2348 | } |
2346 | delete cal; | 2349 | delete cal; |
2347 | mes = i18n("KO/Pi: Ready for beaming"); | 2350 | mes = i18n("KO/Pi: Ready for beaming"); |
2348 | topLevelWidget()->setCaption(mes); | 2351 | topLevelWidget()->setCaption(mes); |
2349 | KApplication::convert2latin1( fn ); | 2352 | KApplication::convert2latin1( fn ); |
2350 | #ifndef DESKTOP_VERSION | 2353 | #ifndef DESKTOP_VERSION |
2351 | Ir *ir = new Ir( this ); | 2354 | Ir *ir = new Ir( this ); |
2352 | connect( ir, SIGNAL( done( Ir * ) ), this, SLOT( beamDone( Ir * ) ) ); | 2355 | connect( ir, SIGNAL( done( Ir * ) ), this, SLOT( beamDone( Ir * ) ) ); |
2353 | ir->send( fn, description, "text/x-vCalendar" ); | 2356 | ir->send( fn, description, "text/x-vCalendar" ); |
2354 | #endif | 2357 | #endif |
2355 | } | 2358 | } |
2356 | } | 2359 | } |
2357 | void CalendarView::beamDone( Ir *ir ) | 2360 | void CalendarView::beamDone( Ir *ir ) |
2358 | { | 2361 | { |
2359 | #ifndef DESKTOP_VERSION | 2362 | #ifndef DESKTOP_VERSION |
2360 | delete ir; | 2363 | delete ir; |
2361 | #endif | 2364 | #endif |
2362 | topLevelWidget()->setCaption( i18n("KO/Pi: Beaming done.") ); | 2365 | topLevelWidget()->setCaption( i18n("KO/Pi: Beaming done.") ); |
2363 | topLevelWidget()->raise(); | 2366 | topLevelWidget()->raise(); |
2364 | } | 2367 | } |
2365 | 2368 | ||
2366 | void CalendarView::moveIncidence(Incidence * inc ) | 2369 | void CalendarView::moveIncidence(Incidence * inc ) |
2367 | { | 2370 | { |
2368 | if ( !inc ) return; | 2371 | if ( !inc ) return; |
2369 | // qDebug("showDatePickerForIncidence( ) "); | 2372 | // qDebug("showDatePickerForIncidence( ) "); |
2370 | if ( mDateFrame->isVisible() ) | 2373 | if ( mDateFrame->isVisible() ) |
2371 | mDateFrame->hide(); | 2374 | mDateFrame->hide(); |
2372 | else { | 2375 | else { |
2373 | int w =mDatePicker->sizeHint().width()+2*mDateFrame->lineWidth() ; | 2376 | int w =mDatePicker->sizeHint().width()+2*mDateFrame->lineWidth() ; |
2374 | int h = mDatePicker->sizeHint().height()+2*mDateFrame->lineWidth() ; | 2377 | int h = mDatePicker->sizeHint().height()+2*mDateFrame->lineWidth() ; |
2375 | int dw = QApplication::desktop()->width(); | 2378 | int dw = QApplication::desktop()->width(); |
2376 | int dh = QApplication::desktop()->height(); | 2379 | int dh = QApplication::desktop()->height(); |
2377 | mDateFrame->setGeometry( (dw-w)/2, (dh - h )/2 ,w,h ); | 2380 | mDateFrame->setGeometry( (dw-w)/2, (dh - h )/2 ,w,h ); |
2378 | mDateFrame->show(); | 2381 | mDateFrame->show(); |
2379 | } | 2382 | } |
2380 | mDatePickerMode = 2; | 2383 | mDatePickerMode = 2; |
2381 | mMoveIncidence = inc ; | 2384 | mMoveIncidence = inc ; |
2382 | QDate da; | 2385 | QDate da; |
2383 | if ( mMoveIncidence->type() == "Todo" ) { | 2386 | if ( mMoveIncidence->type() == "Todo" ) { |
2384 | Todo * to = (Todo *) mMoveIncidence; | 2387 | Todo * to = (Todo *) mMoveIncidence; |
2385 | if ( to->hasDueDate() ) | 2388 | if ( to->hasDueDate() ) |
2386 | da = to->dtDue().date(); | 2389 | da = to->dtDue().date(); |
2387 | else | 2390 | else |
2388 | da = QDate::currentDate(); | 2391 | da = QDate::currentDate(); |
2389 | } else { | 2392 | } else { |
2390 | da = mMoveIncidence->dtStart().date(); | 2393 | da = mMoveIncidence->dtStart().date(); |
2391 | } | 2394 | } |
2392 | mDatePicker->setDate( da ); | 2395 | mDatePicker->setDate( da ); |
2393 | } | 2396 | } |
2394 | void CalendarView::showDatePicker( ) | 2397 | void CalendarView::showDatePicker( ) |
2395 | { | 2398 | { |
2396 | //qDebug("CalendarView::showDatePicker( ) "); | 2399 | //qDebug("CalendarView::showDatePicker( ) "); |
2397 | if ( mDateFrame->isVisible() ) | 2400 | if ( mDateFrame->isVisible() ) |
2398 | mDateFrame->hide(); | 2401 | mDateFrame->hide(); |
2399 | else { | 2402 | else { |
2400 | int w =mDatePicker->sizeHint().width() ; | 2403 | int w =mDatePicker->sizeHint().width() ; |
2401 | int h = mDatePicker->sizeHint().height() ; | 2404 | int h = mDatePicker->sizeHint().height() ; |
2402 | int dw = QApplication::desktop()->width(); | 2405 | int dw = QApplication::desktop()->width(); |
2403 | int dh = QApplication::desktop()->height(); | 2406 | int dh = QApplication::desktop()->height(); |
2404 | mDateFrame->setGeometry( (dw-w)/2, (dh - h )/2 ,w,h ); | 2407 | mDateFrame->setGeometry( (dw-w)/2, (dh - h )/2 ,w,h ); |
2405 | mDateFrame->show(); | 2408 | mDateFrame->show(); |
2406 | } | 2409 | } |
2407 | mDatePickerMode = 1; | 2410 | mDatePickerMode = 1; |
2408 | mDatePicker->setDate( mNavigator->selectedDates().first() ); | 2411 | mDatePicker->setDate( mNavigator->selectedDates().first() ); |
2409 | } | 2412 | } |
2410 | 2413 | ||
2411 | void CalendarView::showEventEditor() | 2414 | void CalendarView::showEventEditor() |
2412 | { | 2415 | { |
2413 | #ifdef DESKTOP_VERSION | 2416 | #ifdef DESKTOP_VERSION |
2414 | mEventEditor->show(); | 2417 | mEventEditor->show(); |
2415 | #else | 2418 | #else |
2416 | mEventEditor->showMaximized(); | 2419 | mEventEditor->showMaximized(); |
2417 | #endif | 2420 | #endif |
2418 | } | 2421 | } |
2419 | void CalendarView::showTodoEditor() | 2422 | void CalendarView::showTodoEditor() |
2420 | { | 2423 | { |
2421 | #ifdef DESKTOP_VERSION | 2424 | #ifdef DESKTOP_VERSION |
2422 | mTodoEditor->show(); | 2425 | mTodoEditor->show(); |
2423 | #else | 2426 | #else |
2424 | mTodoEditor->showMaximized(); | 2427 | mTodoEditor->showMaximized(); |
2425 | #endif | 2428 | #endif |
2426 | } | 2429 | } |
2427 | 2430 | ||
2428 | void CalendarView::cloneIncidence() | 2431 | void CalendarView::cloneIncidence() |
2429 | { | 2432 | { |
2430 | Incidence *incidence = currentSelection(); | 2433 | Incidence *incidence = currentSelection(); |
2431 | if ( !incidence ) incidence = mTodoList->selectedIncidences().first(); | 2434 | if ( !incidence ) incidence = mTodoList->selectedIncidences().first(); |
2432 | if ( incidence ) { | 2435 | if ( incidence ) { |
2433 | cloneIncidence(incidence); | 2436 | cloneIncidence(incidence); |
2434 | } | 2437 | } |
2435 | } | 2438 | } |
2436 | void CalendarView::moveIncidence() | 2439 | void CalendarView::moveIncidence() |
2437 | { | 2440 | { |
2438 | Incidence *incidence = currentSelection(); | 2441 | Incidence *incidence = currentSelection(); |
2439 | if ( !incidence ) incidence = mTodoList->selectedIncidences().first(); | 2442 | if ( !incidence ) incidence = mTodoList->selectedIncidences().first(); |
2440 | if ( incidence ) { | 2443 | if ( incidence ) { |
2441 | moveIncidence(incidence); | 2444 | moveIncidence(incidence); |
2442 | } | 2445 | } |
2443 | } | 2446 | } |
2444 | void CalendarView::beamIncidence() | 2447 | void CalendarView::beamIncidence() |
2445 | { | 2448 | { |
2446 | Incidence *incidence = currentSelection(); | 2449 | Incidence *incidence = currentSelection(); |
2447 | if ( !incidence ) incidence = mTodoList->selectedIncidences().first(); | 2450 | if ( !incidence ) incidence = mTodoList->selectedIncidences().first(); |
2448 | if ( incidence ) { | 2451 | if ( incidence ) { |
2449 | beamIncidence(incidence); | 2452 | beamIncidence(incidence); |
2450 | } | 2453 | } |
2451 | } | 2454 | } |
2452 | void CalendarView::toggleCancelIncidence() | 2455 | void CalendarView::toggleCancelIncidence() |
2453 | { | 2456 | { |
2454 | Incidence *incidence = currentSelection(); | 2457 | Incidence *incidence = currentSelection(); |
2455 | if ( !incidence ) incidence = mTodoList->selectedIncidences().first(); | 2458 | if ( !incidence ) incidence = mTodoList->selectedIncidences().first(); |
2456 | if ( incidence ) { | 2459 | if ( incidence ) { |
2457 | cancelIncidence(incidence); | 2460 | cancelIncidence(incidence); |
2458 | } | 2461 | } |
2459 | } | 2462 | } |
2460 | 2463 | ||
2461 | 2464 | ||
2462 | void CalendarView::cancelIncidence(Incidence * inc ) | 2465 | void CalendarView::cancelIncidence(Incidence * inc ) |
2463 | { | 2466 | { |
2464 | inc->setCancelled( ! inc->cancelled() ); | 2467 | inc->setCancelled( ! inc->cancelled() ); |
2465 | changeIncidenceDisplay( inc,KOGlobals::EVENTEDITED ); | 2468 | changeIncidenceDisplay( inc,KOGlobals::EVENTEDITED ); |
2466 | updateView(); | 2469 | updateView(); |
2467 | } | 2470 | } |
2468 | void CalendarView::cloneIncidence(Incidence * orgInc ) | 2471 | void CalendarView::cloneIncidence(Incidence * orgInc ) |
2469 | { | 2472 | { |
2470 | Incidence * newInc = orgInc->clone(); | 2473 | Incidence * newInc = orgInc->clone(); |
2471 | newInc->recreate(); | 2474 | newInc->recreate(); |
2472 | 2475 | ||
2473 | if ( newInc->type() == "Todo" ) { | 2476 | if ( newInc->type() == "Todo" ) { |
2474 | Todo* t = (Todo*) newInc; | 2477 | Todo* t = (Todo*) newInc; |
2475 | mTodoEditor->editTodo( t ); | 2478 | mTodoEditor->editTodo( t ); |
2476 | showTodoEditor(); | 2479 | showTodoEditor(); |
2477 | if ( mTodoEditor->exec() ) { | 2480 | if ( mTodoEditor->exec() ) { |
2478 | mCalendar->addTodo( t ); | 2481 | mCalendar->addTodo( t ); |
2479 | updateView(); | 2482 | updateView(); |
2480 | } else { | 2483 | } else { |
2481 | delete t; | 2484 | delete t; |
2482 | } | 2485 | } |
2483 | } | 2486 | } |
2484 | else { | 2487 | else { |
2485 | Event* e = (Event*) newInc; | 2488 | Event* e = (Event*) newInc; |
2486 | mEventEditor->editEvent( e ); | 2489 | mEventEditor->editEvent( e ); |
2487 | showEventEditor(); | 2490 | showEventEditor(); |
2488 | if ( mEventEditor->exec() ) { | 2491 | if ( mEventEditor->exec() ) { |
2489 | mCalendar->addEvent( e ); | 2492 | mCalendar->addEvent( e ); |
2490 | updateView(); | 2493 | updateView(); |
2491 | } else { | 2494 | } else { |
2492 | delete e; | 2495 | delete e; |
2493 | } | 2496 | } |
2494 | } | 2497 | } |
2495 | } | 2498 | } |
2496 | 2499 | ||
2497 | void CalendarView::newEvent() | 2500 | void CalendarView::newEvent() |
2498 | { | 2501 | { |
2499 | // TODO: Replace this code by a common eventDurationHint of KOBaseView. | 2502 | // TODO: Replace this code by a common eventDurationHint of KOBaseView. |
2500 | KOAgendaView *aView = mViewManager->agendaView(); | 2503 | KOAgendaView *aView = mViewManager->agendaView(); |
2501 | if (aView) { | 2504 | if (aView) { |
2502 | if (aView->selectionStart().isValid()) { | 2505 | if (aView->selectionStart().isValid()) { |
2503 | if (aView->selectedIsAllDay()) { | 2506 | if (aView->selectedIsAllDay()) { |
2504 | newEvent(aView->selectionStart(),aView->selectionEnd(),true); | 2507 | newEvent(aView->selectionStart(),aView->selectionEnd(),true); |
2505 | } else { | 2508 | } else { |
2506 | newEvent(aView->selectionStart(),aView->selectionEnd()); | 2509 | newEvent(aView->selectionStart(),aView->selectionEnd()); |
2507 | } | 2510 | } |
2508 | return; | 2511 | return; |
2509 | } | 2512 | } |
2510 | } | 2513 | } |
2511 | 2514 | ||
2512 | QDate date = mNavigator->selectedDates().first(); | 2515 | QDate date = mNavigator->selectedDates().first(); |
2513 | QDateTime current = QDateTime::currentDateTime(); | 2516 | QDateTime current = QDateTime::currentDateTime(); |
2514 | if ( date <= current.date() ) { | 2517 | if ( date <= current.date() ) { |
2515 | int hour = current.time().hour() +1; | 2518 | int hour = current.time().hour() +1; |
2516 | newEvent( QDateTime( current.date(), QTime( hour, 0, 0 ) ), | 2519 | newEvent( QDateTime( current.date(), QTime( hour, 0, 0 ) ), |
2517 | QDateTime( current.date(), QTime( hour+ KOPrefs::instance()->mDefaultDuration, 0, 0 ) ) ); | 2520 | QDateTime( current.date(), QTime( hour+ KOPrefs::instance()->mDefaultDuration, 0, 0 ) ) ); |
2518 | } else | 2521 | } else |
2519 | newEvent( QDateTime( date, QTime( KOPrefs::instance()->mStartTime, 0, 0 ) ), | 2522 | newEvent( QDateTime( date, QTime( KOPrefs::instance()->mStartTime, 0, 0 ) ), |
2520 | QDateTime( date, QTime( KOPrefs::instance()->mStartTime + | 2523 | QDateTime( date, QTime( KOPrefs::instance()->mStartTime + |
2521 | KOPrefs::instance()->mDefaultDuration, 0, 0 ) ) ); | 2524 | KOPrefs::instance()->mDefaultDuration, 0, 0 ) ) ); |
2522 | } | 2525 | } |
2523 | 2526 | ||
2524 | void CalendarView::newEvent(QDateTime fh) | 2527 | void CalendarView::newEvent(QDateTime fh) |
2525 | { | 2528 | { |
2526 | newEvent(fh, | 2529 | newEvent(fh, |
2527 | QDateTime(fh.addSecs(3600*KOPrefs::instance()->mDefaultDuration))); | 2530 | QDateTime(fh.addSecs(3600*KOPrefs::instance()->mDefaultDuration))); |
2528 | } | 2531 | } |
2529 | 2532 | ||
2530 | void CalendarView::newEvent(QDate dt) | 2533 | void CalendarView::newEvent(QDate dt) |
2531 | { | 2534 | { |
2532 | newEvent(QDateTime(dt, QTime(0,0,0)), | 2535 | newEvent(QDateTime(dt, QTime(0,0,0)), |
2533 | QDateTime(dt, QTime(0,0,0)), true); | 2536 | QDateTime(dt, QTime(0,0,0)), true); |
2534 | } | 2537 | } |
2535 | 2538 | ||
2536 | void CalendarView::newEvent(QDateTime fromHint, QDateTime toHint, bool allDay) | 2539 | void CalendarView::newEvent(QDateTime fromHint, QDateTime toHint, bool allDay) |
2537 | { | 2540 | { |
2538 | 2541 | ||
2539 | mEventEditor->newEvent(fromHint,toHint,allDay); | 2542 | mEventEditor->newEvent(fromHint,toHint,allDay); |
2540 | if ( mFilterView->filtersEnabled() ) { | 2543 | if ( mFilterView->filtersEnabled() ) { |
2541 | CalFilter *filter = mFilterView->selectedFilter(); | 2544 | CalFilter *filter = mFilterView->selectedFilter(); |
2542 | if (filter && filter->showCategories()) { | 2545 | if (filter && filter->showCategories()) { |
2543 | mEventEditor->setCategories(filter->categoryList().join(",") ); | 2546 | mEventEditor->setCategories(filter->categoryList().join(",") ); |
2544 | } | 2547 | } |
2545 | if ( filter ) | 2548 | if ( filter ) |
2546 | mEventEditor->setSecrecy( filter->getSecrecy() ); | 2549 | mEventEditor->setSecrecy( filter->getSecrecy() ); |
2547 | } | 2550 | } |
2548 | showEventEditor(); | 2551 | showEventEditor(); |
2549 | } | 2552 | } |
2550 | void CalendarView::todoAdded(Todo * t) | 2553 | void CalendarView::todoAdded(Todo * t) |
2551 | { | 2554 | { |
2552 | 2555 | ||
2553 | changeTodoDisplay ( t ,KOGlobals::EVENTADDED); | 2556 | changeTodoDisplay ( t ,KOGlobals::EVENTADDED); |
2554 | updateTodoViews(); | 2557 | updateTodoViews(); |
2555 | } | 2558 | } |
2556 | void CalendarView::todoChanged(Todo * t) | 2559 | void CalendarView::todoChanged(Todo * t) |
2557 | { | 2560 | { |
2558 | emit todoModified( t, 4 ); | 2561 | emit todoModified( t, 4 ); |
2559 | // updateTodoViews(); | 2562 | // updateTodoViews(); |
2560 | } | 2563 | } |
2561 | void CalendarView::todoToBeDeleted(Todo *) | 2564 | void CalendarView::todoToBeDeleted(Todo *) |
2562 | { | 2565 | { |
2563 | //qDebug("todoToBeDeleted(Todo *) "); | 2566 | //qDebug("todoToBeDeleted(Todo *) "); |
2564 | updateTodoViews(); | 2567 | updateTodoViews(); |
2565 | } | 2568 | } |
2566 | void CalendarView::todoDeleted() | 2569 | void CalendarView::todoDeleted() |
2567 | { | 2570 | { |
2568 | //qDebug(" todoDeleted()"); | 2571 | //qDebug(" todoDeleted()"); |
2569 | updateTodoViews(); | 2572 | updateTodoViews(); |
2570 | } | 2573 | } |
2571 | 2574 | ||
2572 | 2575 | ||
2573 | 2576 | ||
2574 | void CalendarView::newTodo() | 2577 | void CalendarView::newTodo() |
2575 | { | 2578 | { |
2576 | 2579 | ||
2577 | mTodoEditor->newTodo(QDateTime::currentDateTime().addDays(7),0,true); | 2580 | mTodoEditor->newTodo(QDateTime::currentDateTime().addDays(7),0,true); |
2578 | if ( mFilterView->filtersEnabled() ) { | 2581 | if ( mFilterView->filtersEnabled() ) { |
2579 | CalFilter *filter = mFilterView->selectedFilter(); | 2582 | CalFilter *filter = mFilterView->selectedFilter(); |
2580 | if (filter && filter->showCategories()) { | 2583 | if (filter && filter->showCategories()) { |
2581 | mTodoEditor->setCategories(filter->categoryList().join(",") ); | 2584 | mTodoEditor->setCategories(filter->categoryList().join(",") ); |
2582 | } | 2585 | } |
2583 | if ( filter ) | 2586 | if ( filter ) |
2584 | mTodoEditor->setSecrecy( filter->getSecrecy() ); | 2587 | mTodoEditor->setSecrecy( filter->getSecrecy() ); |
2585 | } | 2588 | } |
2586 | showTodoEditor(); | 2589 | showTodoEditor(); |
2587 | } | 2590 | } |
2588 | 2591 | ||
2589 | void CalendarView::newSubTodo() | 2592 | void CalendarView::newSubTodo() |
2590 | { | 2593 | { |
2591 | Todo *todo = selectedTodo(); | 2594 | Todo *todo = selectedTodo(); |
2592 | if ( todo ) newSubTodo( todo ); | 2595 | if ( todo ) newSubTodo( todo ); |
2593 | } | 2596 | } |
2594 | 2597 | ||
2595 | void CalendarView::newSubTodo(Todo *parentEvent) | 2598 | void CalendarView::newSubTodo(Todo *parentEvent) |
2596 | { | 2599 | { |
2597 | 2600 | ||
2598 | mTodoEditor->newTodo(QDateTime::currentDateTime().addDays(7),parentEvent,true); | 2601 | mTodoEditor->newTodo(QDateTime::currentDateTime().addDays(7),parentEvent,true); |
2599 | showTodoEditor(); | 2602 | showTodoEditor(); |
2600 | } | 2603 | } |
2601 | 2604 | ||
2602 | void CalendarView::newFloatingEvent() | 2605 | void CalendarView::newFloatingEvent() |
2603 | { | 2606 | { |
2604 | DateList tmpList = mNavigator->selectedDates(); | 2607 | DateList tmpList = mNavigator->selectedDates(); |
2605 | QDate date = tmpList.first(); | 2608 | QDate date = tmpList.first(); |
2606 | 2609 | ||
2607 | newEvent( QDateTime( date, QTime( 12, 0, 0 ) ), | 2610 | newEvent( QDateTime( date, QTime( 12, 0, 0 ) ), |
2608 | QDateTime( date, QTime( 12, 0, 0 ) ), true ); | 2611 | QDateTime( date, QTime( 12, 0, 0 ) ), true ); |
2609 | } | 2612 | } |
2610 | 2613 | ||
2611 | 2614 | ||
2612 | void CalendarView::editEvent( Event *event ) | 2615 | void CalendarView::editEvent( Event *event ) |
2613 | { | 2616 | { |
2614 | 2617 | ||
2615 | if ( !event ) return; | 2618 | if ( !event ) return; |
2616 | if ( event->isReadOnly() ) { | 2619 | if ( event->isReadOnly() ) { |
2617 | showEvent( event ); | 2620 | showEvent( event ); |
2618 | return; | 2621 | return; |
2619 | } | 2622 | } |
2620 | mEventEditor->editEvent( event , mFlagEditDescription); | 2623 | mEventEditor->editEvent( event , mFlagEditDescription); |
2621 | showEventEditor(); | 2624 | showEventEditor(); |
2622 | } | 2625 | } |
2623 | void CalendarView::editJournal( Journal *jour ) | 2626 | void CalendarView::editJournal( Journal *jour ) |
2624 | { | 2627 | { |
2625 | if ( !jour ) return; | 2628 | if ( !jour ) return; |
2626 | mDialogManager->hideSearchDialog(); | 2629 | mDialogManager->hideSearchDialog(); |
2627 | mViewManager->showJournalView(); | 2630 | mViewManager->showJournalView(); |
2628 | mNavigator->slotDaySelect( jour->dtStart().date() ); | 2631 | mNavigator->slotDaySelect( jour->dtStart().date() ); |
2629 | } | 2632 | } |
2630 | void CalendarView::editTodo( Todo *todo ) | 2633 | void CalendarView::editTodo( Todo *todo ) |
2631 | { | 2634 | { |
2632 | if ( !todo ) return; | 2635 | if ( !todo ) return; |
2633 | 2636 | ||
2634 | if ( todo->isReadOnly() ) { | 2637 | if ( todo->isReadOnly() ) { |
2635 | showTodo( todo ); | 2638 | showTodo( todo ); |
2636 | return; | 2639 | return; |
2637 | } | 2640 | } |
2638 | mTodoEditor->editTodo( todo ,mFlagEditDescription); | 2641 | mTodoEditor->editTodo( todo ,mFlagEditDescription); |
2639 | showTodoEditor(); | 2642 | showTodoEditor(); |
2640 | 2643 | ||
2641 | } | 2644 | } |
2642 | 2645 | ||
2643 | KOEventViewerDialog* CalendarView::getEventViewerDialog() | 2646 | KOEventViewerDialog* CalendarView::getEventViewerDialog() |
2644 | { | 2647 | { |
2645 | if ( !mEventViewerDialog ) { | 2648 | if ( !mEventViewerDialog ) { |
2646 | mEventViewerDialog = new KOEventViewerDialog(this); | 2649 | mEventViewerDialog = new KOEventViewerDialog(this); |
2647 | connect( mEventViewerDialog, SIGNAL( editIncidence( Incidence* )), this, SLOT(editIncidence( Incidence* ) ) ); | 2650 | connect( mEventViewerDialog, SIGNAL( editIncidence( Incidence* )), this, SLOT(editIncidence( Incidence* ) ) ); |
2648 | connect( this, SIGNAL(configChanged()), mEventViewerDialog, SLOT(updateConfig())); | 2651 | connect( this, SIGNAL(configChanged()), mEventViewerDialog, SLOT(updateConfig())); |
2649 | connect( mEventViewerDialog, SIGNAL(jumpToTime( const QDate &)), | 2652 | connect( mEventViewerDialog, SIGNAL(jumpToTime( const QDate &)), |
2650 | dateNavigator(), SLOT( selectWeek( const QDate & ) ) ); | 2653 | dateNavigator(), SLOT( selectWeek( const QDate & ) ) ); |
2651 | connect( mEventViewerDialog, SIGNAL(showAgendaView( bool ) ), | 2654 | connect( mEventViewerDialog, SIGNAL(showAgendaView( bool ) ), |
2652 | viewManager(), SLOT( showAgendaView( bool ) ) ); | 2655 | viewManager(), SLOT( showAgendaView( bool ) ) ); |
2653 | mEventViewerDialog->resize( 640, 480 ); | 2656 | mEventViewerDialog->resize( 640, 480 ); |
2654 | 2657 | ||
2655 | } | 2658 | } |
2656 | return mEventViewerDialog; | 2659 | return mEventViewerDialog; |
2657 | } | 2660 | } |
2658 | void CalendarView::showEvent(Event *event) | 2661 | void CalendarView::showEvent(Event *event) |
2659 | { | 2662 | { |
2660 | getEventViewerDialog()->setEvent(event); | 2663 | getEventViewerDialog()->setEvent(event); |
2661 | getEventViewerDialog()->showMe(); | 2664 | getEventViewerDialog()->showMe(); |
2662 | } | 2665 | } |
2663 | 2666 | ||
2664 | void CalendarView::showTodo(Todo *event) | 2667 | void CalendarView::showTodo(Todo *event) |
2665 | { | 2668 | { |
2666 | getEventViewerDialog()->setTodo(event); | 2669 | getEventViewerDialog()->setTodo(event); |
2667 | getEventViewerDialog()->showMe(); | 2670 | getEventViewerDialog()->showMe(); |
2668 | } | 2671 | } |
2669 | void CalendarView::showJournal( Journal *jour ) | 2672 | void CalendarView::showJournal( Journal *jour ) |
2670 | { | 2673 | { |
2671 | getEventViewerDialog()->setJournal(jour); | 2674 | getEventViewerDialog()->setJournal(jour); |
2672 | getEventViewerDialog()->showMe(); | 2675 | getEventViewerDialog()->showMe(); |
2673 | 2676 | ||
2674 | } | 2677 | } |
2675 | // void CalendarView::todoModified (Todo *event, int changed) | 2678 | // void CalendarView::todoModified (Todo *event, int changed) |
2676 | // { | 2679 | // { |
2677 | // // if (mDialogList.find (event) != mDialogList.end ()) { | 2680 | // // if (mDialogList.find (event) != mDialogList.end ()) { |
2678 | // // kdDebug() << "Todo modified and open" << endl; | 2681 | // // kdDebug() << "Todo modified and open" << endl; |
2679 | // // KOTodoEditor* temp = (KOTodoEditor *) mDialogList[event]; | 2682 | // // KOTodoEditor* temp = (KOTodoEditor *) mDialogList[event]; |
2680 | // // temp->modified (changed); | 2683 | // // temp->modified (changed); |
2681 | 2684 | ||
2682 | // // } | 2685 | // // } |
2683 | 2686 | ||
2684 | // mViewManager->updateView(); | 2687 | // mViewManager->updateView(); |
2685 | // } | 2688 | // } |
2686 | 2689 | ||
2687 | void CalendarView::appointment_show() | 2690 | void CalendarView::appointment_show() |
2688 | { | 2691 | { |
2689 | Event *anEvent = 0; | 2692 | Event *anEvent = 0; |
2690 | 2693 | ||
2691 | Incidence *incidence = mViewManager->currentView()->selectedIncidences().first(); | 2694 | Incidence *incidence = mViewManager->currentView()->selectedIncidences().first(); |
2692 | 2695 | ||
2693 | if (mViewManager->currentView()->isEventView()) { | 2696 | if (mViewManager->currentView()->isEventView()) { |
2694 | if ( incidence && incidence->type() == "Event" ) { | 2697 | if ( incidence && incidence->type() == "Event" ) { |
2695 | anEvent = static_cast<Event *>(incidence); | 2698 | anEvent = static_cast<Event *>(incidence); |
2696 | } | 2699 | } |
2697 | } | 2700 | } |
2698 | 2701 | ||
2699 | if (!anEvent) { | 2702 | if (!anEvent) { |
2700 | KNotifyClient::beep(); | 2703 | KNotifyClient::beep(); |
2701 | return; | 2704 | return; |
2702 | } | 2705 | } |
2703 | 2706 | ||
2704 | showEvent(anEvent); | 2707 | showEvent(anEvent); |
2705 | } | 2708 | } |
2706 | 2709 | ||
2707 | void CalendarView::appointment_edit() | 2710 | void CalendarView::appointment_edit() |
2708 | { | 2711 | { |
2709 | Event *anEvent = 0; | 2712 | Event *anEvent = 0; |
2710 | 2713 | ||
2711 | Incidence *incidence = mViewManager->currentView()->selectedIncidences().first(); | 2714 | Incidence *incidence = mViewManager->currentView()->selectedIncidences().first(); |
2712 | 2715 | ||
2713 | if (mViewManager->currentView()->isEventView()) { | 2716 | if (mViewManager->currentView()->isEventView()) { |
2714 | if ( incidence && incidence->type() == "Event" ) { | 2717 | if ( incidence && incidence->type() == "Event" ) { |
2715 | anEvent = static_cast<Event *>(incidence); | 2718 | anEvent = static_cast<Event *>(incidence); |
2716 | } | 2719 | } |
2717 | } | 2720 | } |
2718 | 2721 | ||
2719 | if (!anEvent) { | 2722 | if (!anEvent) { |
2720 | KNotifyClient::beep(); | 2723 | KNotifyClient::beep(); |
2721 | return; | 2724 | return; |
2722 | } | 2725 | } |
2723 | 2726 | ||
2724 | editEvent(anEvent); | 2727 | editEvent(anEvent); |
2725 | } | 2728 | } |
2726 | 2729 | ||
2727 | void CalendarView::appointment_delete() | 2730 | void CalendarView::appointment_delete() |
2728 | { | 2731 | { |
2729 | Event *anEvent = 0; | 2732 | Event *anEvent = 0; |
2730 | 2733 | ||
2731 | Incidence *incidence = mViewManager->currentView()->selectedIncidences().first(); | 2734 | Incidence *incidence = mViewManager->currentView()->selectedIncidences().first(); |
2732 | 2735 | ||
2733 | if (mViewManager->currentView()->isEventView()) { | 2736 | if (mViewManager->currentView()->isEventView()) { |
2734 | if ( incidence && incidence->type() == "Event" ) { | 2737 | if ( incidence && incidence->type() == "Event" ) { |
2735 | anEvent = static_cast<Event *>(incidence); | 2738 | anEvent = static_cast<Event *>(incidence); |
2736 | } | 2739 | } |
2737 | } | 2740 | } |
2738 | 2741 | ||
2739 | if (!anEvent) { | 2742 | if (!anEvent) { |
2740 | KNotifyClient::beep(); | 2743 | KNotifyClient::beep(); |
2741 | return; | 2744 | return; |
2742 | } | 2745 | } |
2743 | 2746 | ||
2744 | deleteEvent(anEvent); | 2747 | deleteEvent(anEvent); |
2745 | } | 2748 | } |
2746 | 2749 | ||
2747 | void CalendarView::todo_resub( Todo * parent, Todo * sub ) | 2750 | void CalendarView::todo_resub( Todo * parent, Todo * sub ) |
2748 | { | 2751 | { |
2749 | if (!sub) return; | 2752 | if (!sub) return; |
2750 | if (!parent) return; | 2753 | if (!parent) return; |
2751 | if ( sub->relatedTo() ) | 2754 | if ( sub->relatedTo() ) |
2752 | sub->relatedTo()->removeRelation(sub); | 2755 | sub->relatedTo()->removeRelation(sub); |
2753 | sub->setRelatedTo(parent); | 2756 | sub->setRelatedTo(parent); |
2754 | sub->setRelatedToUid(parent->uid()); | 2757 | sub->setRelatedToUid(parent->uid()); |
2755 | parent->addRelation(sub); | 2758 | parent->addRelation(sub); |
2756 | sub->updated(); | 2759 | sub->updated(); |
2757 | parent->updated(); | 2760 | parent->updated(); |
2758 | setModified(true); | 2761 | setModified(true); |
2759 | updateView(); | 2762 | updateView(); |
2760 | } | 2763 | } |
2761 | void CalendarView::todo_unsub(Todo *anTodo ) | 2764 | void CalendarView::todo_unsub(Todo *anTodo ) |
2762 | { | 2765 | { |
2763 | // Todo *anTodo = selectedTodo(); | 2766 | // Todo *anTodo = selectedTodo(); |
2764 | if (!anTodo) return; | 2767 | if (!anTodo) return; |
2765 | if (!anTodo->relatedTo()) return; | 2768 | if (!anTodo->relatedTo()) return; |
2766 | anTodo->relatedTo()->removeRelation(anTodo); | 2769 | anTodo->relatedTo()->removeRelation(anTodo); |
2767 | anTodo->setRelatedTo(0); | 2770 | anTodo->setRelatedTo(0); |
2768 | anTodo->updated(); | 2771 | anTodo->updated(); |
2769 | anTodo->setRelatedToUid(""); | 2772 | anTodo->setRelatedToUid(""); |
2770 | setModified(true); | 2773 | setModified(true); |
2771 | updateView(); | 2774 | updateView(); |
2772 | } | 2775 | } |
2773 | 2776 | ||
2774 | void CalendarView::deleteTodo(Todo *todo) | 2777 | void CalendarView::deleteTodo(Todo *todo) |
2775 | { | 2778 | { |
2776 | if (!todo) { | 2779 | if (!todo) { |
2777 | KNotifyClient::beep(); | 2780 | KNotifyClient::beep(); |
2778 | return; | 2781 | return; |
2779 | } | 2782 | } |
2780 | if (KOPrefs::instance()->mConfirm) { | 2783 | if (KOPrefs::instance()->mConfirm) { |
2781 | switch (msgItemDelete()) { | 2784 | switch (msgItemDelete()) { |
2782 | case KMessageBox::Continue: // OK | 2785 | case KMessageBox::Continue: // OK |
2783 | if (!todo->relations().isEmpty()) { | 2786 | if (!todo->relations().isEmpty()) { |
2784 | KMessageBox::sorry(this,i18n("Cannot delete To-Do\nwhich has children."), | 2787 | KMessageBox::sorry(this,i18n("Cannot delete To-Do\nwhich has children."), |
2785 | i18n("Delete To-Do")); | 2788 | i18n("Delete To-Do")); |
2786 | } else { | 2789 | } else { |
2787 | checkExternalId( todo ); | 2790 | checkExternalId( todo ); |
2788 | calendar()->deleteTodo(todo); | 2791 | calendar()->deleteTodo(todo); |
2789 | changeTodoDisplay( todo,KOGlobals::EVENTDELETED ); | 2792 | changeTodoDisplay( todo,KOGlobals::EVENTDELETED ); |
2790 | updateView(); | 2793 | updateView(); |
2791 | } | 2794 | } |
2792 | break; | 2795 | break; |
2793 | } // switch | 2796 | } // switch |
2794 | } else { | 2797 | } else { |
2795 | if (!todo->relations().isEmpty()) { | 2798 | if (!todo->relations().isEmpty()) { |
2796 | KMessageBox::sorry(this,i18n("Cannot delete To-Do\nwhich has children."), | 2799 | KMessageBox::sorry(this,i18n("Cannot delete To-Do\nwhich has children."), |
2797 | i18n("Delete To-Do")); | 2800 | i18n("Delete To-Do")); |
2798 | } else { | 2801 | } else { |
2799 | checkExternalId( todo ); | 2802 | checkExternalId( todo ); |
2800 | mCalendar->deleteTodo(todo); | 2803 | mCalendar->deleteTodo(todo); |
2801 | changeTodoDisplay( todo,KOGlobals::EVENTDELETED ); | 2804 | changeTodoDisplay( todo,KOGlobals::EVENTDELETED ); |
2802 | updateView(); | 2805 | updateView(); |
2803 | } | 2806 | } |
2804 | } | 2807 | } |
2805 | emit updateSearchDialog(); | 2808 | emit updateSearchDialog(); |
2806 | } | 2809 | } |
2807 | void CalendarView::deleteJournal(Journal *jour) | 2810 | void CalendarView::deleteJournal(Journal *jour) |
2808 | { | 2811 | { |
2809 | if (!jour) { | 2812 | if (!jour) { |
2810 | KNotifyClient::beep(); | 2813 | KNotifyClient::beep(); |
2811 | return; | 2814 | return; |
2812 | } | 2815 | } |
2813 | if (KOPrefs::instance()->mConfirm) { | 2816 | if (KOPrefs::instance()->mConfirm) { |
2814 | switch (msgItemDelete()) { | 2817 | switch (msgItemDelete()) { |
2815 | case KMessageBox::Continue: // OK | 2818 | case KMessageBox::Continue: // OK |
2816 | calendar()->deleteJournal(jour); | 2819 | calendar()->deleteJournal(jour); |
2817 | updateView(); | 2820 | updateView(); |
2818 | break; | 2821 | break; |
2819 | } // switch | 2822 | } // switch |
2820 | } else { | 2823 | } else { |
2821 | calendar()->deleteJournal(jour);; | 2824 | calendar()->deleteJournal(jour);; |
2822 | updateView(); | 2825 | updateView(); |
2823 | } | 2826 | } |
2824 | emit updateSearchDialog(); | 2827 | emit updateSearchDialog(); |
2825 | } | 2828 | } |
2826 | 2829 | ||
2827 | void CalendarView::deleteEvent(Event *anEvent) | 2830 | void CalendarView::deleteEvent(Event *anEvent) |
2828 | { | 2831 | { |
2829 | if (!anEvent) { | 2832 | if (!anEvent) { |
2830 | KNotifyClient::beep(); | 2833 | KNotifyClient::beep(); |
2831 | return; | 2834 | return; |
2832 | } | 2835 | } |
2833 | 2836 | ||
2834 | if (anEvent->recurrence()->doesRecur()) { | 2837 | if (anEvent->recurrence()->doesRecur()) { |
2835 | QDate itemDate = mViewManager->currentSelectionDate(); | 2838 | QDate itemDate = mViewManager->currentSelectionDate(); |
2836 | int km; | 2839 | int km; |
2837 | if (!itemDate.isValid()) { | 2840 | if (!itemDate.isValid()) { |
2838 | //kdDebug() << "Date Not Valid" << endl; | 2841 | //kdDebug() << "Date Not Valid" << endl; |
2839 | if (KOPrefs::instance()->mConfirm) { | 2842 | if (KOPrefs::instance()->mConfirm) { |
2840 | km = KMessageBox::warningContinueCancel(this,anEvent->summary() + | 2843 | km = KMessageBox::warningContinueCancel(this,anEvent->summary() + |
2841 | i18n("\nThis event recurs\nover multiple dates.\nAre you sure you want\nto delete this event\nand all its recurrences?"), | 2844 | i18n("\nThis event recurs\nover multiple dates.\nAre you sure you want\nto delete this event\nand all its recurrences?"), |
2842 | i18n("KO/Pi Confirmation"),i18n("Delete All")); | 2845 | i18n("KO/Pi Confirmation"),i18n("Delete All")); |
2843 | if ( km == KMessageBox::Continue ) | 2846 | if ( km == KMessageBox::Continue ) |
2844 | km = KMessageBox::No; // No = all below | 2847 | km = KMessageBox::No; // No = all below |
2845 | } else | 2848 | } else |
2846 | km = KMessageBox::No; | 2849 | km = KMessageBox::No; |
2847 | } else { | 2850 | } else { |
2848 | km = KMessageBox::warningYesNoCancel(this,anEvent->summary() + | 2851 | km = KMessageBox::warningYesNoCancel(this,anEvent->summary() + |
2849 | i18n("\nThis event recurs\nover multiple dates.\nDo you want to delete\nall it's recurrences,\nor only the current one on:\n")+ | 2852 | i18n("\nThis event recurs\nover multiple dates.\nDo you want to delete\nall it's recurrences,\nor only the current one on:\n")+ |
2850 | KGlobal::locale()->formatDate(itemDate)+i18n(" ?\n\nDelete:\n"), | 2853 | KGlobal::locale()->formatDate(itemDate)+i18n(" ?\n\nDelete:\n"), |
2851 | i18n("KO/Pi Confirmation"),i18n("Current"), | 2854 | i18n("KO/Pi Confirmation"),i18n("Current"), |
2852 | i18n("All")); | 2855 | i18n("All")); |
2853 | } | 2856 | } |
2854 | switch(km) { | 2857 | switch(km) { |
2855 | 2858 | ||
2856 | case KMessageBox::No: // Continue // all | 2859 | case KMessageBox::No: // Continue // all |
2857 | //qDebug("KMessageBox::No "); | 2860 | //qDebug("KMessageBox::No "); |
2858 | if (anEvent->organizer()==KOPrefs::instance()->email() && anEvent->attendeeCount()>0) | 2861 | if (anEvent->organizer()==KOPrefs::instance()->email() && anEvent->attendeeCount()>0) |
2859 | schedule(Scheduler::Cancel,anEvent); | 2862 | schedule(Scheduler::Cancel,anEvent); |
2860 | 2863 | ||
2861 | checkExternalId( anEvent); | 2864 | checkExternalId( anEvent); |
2862 | mCalendar->deleteEvent(anEvent); | 2865 | mCalendar->deleteEvent(anEvent); |
2863 | changeEventDisplay(anEvent,KOGlobals::EVENTDELETED); | 2866 | changeEventDisplay(anEvent,KOGlobals::EVENTDELETED); |
2864 | break; | 2867 | break; |
2865 | 2868 | ||
2866 | // Disabled because it does not work | 2869 | // Disabled because it does not work |
2867 | //#if 0 | 2870 | //#if 0 |
2868 | case KMessageBox::Yes: // just this one | 2871 | case KMessageBox::Yes: // just this one |
2869 | //QDate qd = mNavigator->selectedDates().first(); | 2872 | //QDate qd = mNavigator->selectedDates().first(); |
2870 | //if (!qd.isValid()) { | 2873 | //if (!qd.isValid()) { |
2871 | // kdDebug() << "no date selected, or invalid date" << endl; | 2874 | // kdDebug() << "no date selected, or invalid date" << endl; |
2872 | // KNotifyClient::beep(); | 2875 | // KNotifyClient::beep(); |
2873 | // return; | 2876 | // return; |
2874 | //} | 2877 | //} |
2875 | //while (!anEvent->recursOn(qd)) qd = qd.addDays(1); | 2878 | //while (!anEvent->recursOn(qd)) qd = qd.addDays(1); |
2876 | if (itemDate!=QDate(1,1,1) || itemDate.isValid()) { | 2879 | if (itemDate!=QDate(1,1,1) || itemDate.isValid()) { |
2877 | anEvent->addExDate(itemDate); | 2880 | anEvent->addExDate(itemDate); |
2878 | int duration = anEvent->recurrence()->duration(); | 2881 | int duration = anEvent->recurrence()->duration(); |
2879 | if ( duration > 0 ) { | 2882 | if ( duration > 0 ) { |
2880 | anEvent->recurrence()->setDuration( duration - 1 ); | 2883 | anEvent->recurrence()->setDuration( duration - 1 ); |
2881 | } | 2884 | } |
2882 | changeEventDisplay(anEvent, KOGlobals::EVENTEDITED); | 2885 | changeEventDisplay(anEvent, KOGlobals::EVENTEDITED); |
2883 | } | 2886 | } |
2884 | break; | 2887 | break; |
2885 | //#endif | 2888 | //#endif |
2886 | } // switch | 2889 | } // switch |
2887 | } else { | 2890 | } else { |
2888 | if (KOPrefs::instance()->mConfirm) { | 2891 | if (KOPrefs::instance()->mConfirm) { |
2889 | switch (KMessageBox::warningContinueCancel(this,anEvent->summary() + | 2892 | switch (KMessageBox::warningContinueCancel(this,anEvent->summary() + |
2890 | i18n("\nAre you sure you want\nto delete this event?"), | 2893 | i18n("\nAre you sure you want\nto delete this event?"), |
2891 | i18n("KO/Pi Confirmation"),i18n("Delete"))) { | 2894 | i18n("KO/Pi Confirmation"),i18n("Delete"))) { |
2892 | case KMessageBox::Continue: // OK | 2895 | case KMessageBox::Continue: // OK |
2893 | if (anEvent->organizer()==KOPrefs::instance()->email() && anEvent->attendeeCount()>0) | 2896 | if (anEvent->organizer()==KOPrefs::instance()->email() && anEvent->attendeeCount()>0) |
2894 | schedule(Scheduler::Cancel,anEvent); | 2897 | schedule(Scheduler::Cancel,anEvent); |
2895 | checkExternalId( anEvent); | 2898 | checkExternalId( anEvent); |
2896 | mCalendar->deleteEvent(anEvent); | 2899 | mCalendar->deleteEvent(anEvent); |
2897 | changeEventDisplay(anEvent, KOGlobals::EVENTDELETED); | 2900 | changeEventDisplay(anEvent, KOGlobals::EVENTDELETED); |
2898 | break; | 2901 | break; |
2899 | } // switch | 2902 | } // switch |
2900 | } else { | 2903 | } else { |
2901 | if (anEvent->organizer()==KOPrefs::instance()->email() && anEvent->attendeeCount()>0) | 2904 | if (anEvent->organizer()==KOPrefs::instance()->email() && anEvent->attendeeCount()>0) |
2902 | schedule(Scheduler::Cancel,anEvent); | 2905 | schedule(Scheduler::Cancel,anEvent); |
2903 | checkExternalId( anEvent); | 2906 | checkExternalId( anEvent); |
2904 | mCalendar->deleteEvent(anEvent); | 2907 | mCalendar->deleteEvent(anEvent); |
2905 | changeEventDisplay(anEvent, KOGlobals::EVENTDELETED); | 2908 | changeEventDisplay(anEvent, KOGlobals::EVENTDELETED); |
2906 | } | 2909 | } |
2907 | } // if-else | 2910 | } // if-else |
2908 | emit updateSearchDialog(); | 2911 | emit updateSearchDialog(); |
2909 | } | 2912 | } |
2910 | 2913 | ||
2911 | bool CalendarView::deleteEvent(const QString &uid) | 2914 | bool CalendarView::deleteEvent(const QString &uid) |
2912 | { | 2915 | { |
2913 | Event *ev = mCalendar->event(uid); | 2916 | Event *ev = mCalendar->event(uid); |
2914 | if (ev) { | 2917 | if (ev) { |
2915 | deleteEvent(ev); | 2918 | deleteEvent(ev); |
2916 | return true; | 2919 | return true; |
2917 | } else { | 2920 | } else { |
2918 | return false; | 2921 | return false; |
2919 | } | 2922 | } |
2920 | } | 2923 | } |
2921 | 2924 | ||
2922 | /*****************************************************************************/ | 2925 | /*****************************************************************************/ |
2923 | 2926 | ||
2924 | void CalendarView::action_mail() | 2927 | void CalendarView::action_mail() |
2925 | { | 2928 | { |
2926 | #ifndef KORG_NOMAIL | 2929 | #ifndef KORG_NOMAIL |
2927 | KOMailClient mailClient; | 2930 | KOMailClient mailClient; |
2928 | 2931 | ||
2929 | Incidence *incidence = currentSelection(); | 2932 | Incidence *incidence = currentSelection(); |
2930 | 2933 | ||
2931 | if (!incidence) { | 2934 | if (!incidence) { |
2932 | KMessageBox::sorry(this,i18n("Can't generate mail:\nNo event selected.")); | 2935 | KMessageBox::sorry(this,i18n("Can't generate mail:\nNo event selected.")); |
2933 | return; | 2936 | return; |
2934 | } | 2937 | } |
2935 | if(incidence->attendeeCount() == 0 ) { | 2938 | if(incidence->attendeeCount() == 0 ) { |
2936 | KMessageBox::sorry(this, | 2939 | KMessageBox::sorry(this, |
2937 | i18n("Can't generate mail:\nNo attendees defined.\n")); | 2940 | i18n("Can't generate mail:\nNo attendees defined.\n")); |
2938 | return; | 2941 | return; |
2939 | } | 2942 | } |
2940 | 2943 | ||
2941 | CalendarLocal cal_tmp; | 2944 | CalendarLocal cal_tmp; |
2942 | Event *event = 0; | 2945 | Event *event = 0; |
2943 | Event *ev = 0; | 2946 | Event *ev = 0; |
2944 | if ( incidence && incidence->type() == "Event" ) { | 2947 | if ( incidence && incidence->type() == "Event" ) { |
2945 | event = static_cast<Event *>(incidence); | 2948 | event = static_cast<Event *>(incidence); |
2946 | ev = new Event(*event); | 2949 | ev = new Event(*event); |
2947 | cal_tmp.addEvent(ev); | 2950 | cal_tmp.addEvent(ev); |
2948 | } | 2951 | } |
2949 | ICalFormat mForm(); | 2952 | ICalFormat mForm(); |
2950 | QString attachment = mForm.toString( &cal_tmp ); | 2953 | QString attachment = mForm.toString( &cal_tmp ); |
2951 | if (ev) delete(ev); | 2954 | if (ev) delete(ev); |
2952 | 2955 | ||
2953 | mailClient.mailAttendees(currentSelection(), attachment); | 2956 | mailClient.mailAttendees(currentSelection(), attachment); |
2954 | 2957 | ||
2955 | #endif | 2958 | #endif |
2956 | 2959 | ||
2957 | #if 0 | 2960 | #if 0 |
2958 | Event *anEvent = 0; | 2961 | Event *anEvent = 0; |
2959 | if (mViewManager->currentView()->isEventView()) { | 2962 | if (mViewManager->currentView()->isEventView()) { |
2960 | anEvent = dynamic_cast<Event *>((mViewManager->currentView()->selectedIncidences()).first()); | 2963 | anEvent = dynamic_cast<Event *>((mViewManager->currentView()->selectedIncidences()).first()); |
2961 | } | 2964 | } |
2962 | 2965 | ||
2963 | if (!anEvent) { | 2966 | if (!anEvent) { |
2964 | KMessageBox::sorry(this,i18n("Can't generate mail:\nNo event selected.")); | 2967 | KMessageBox::sorry(this,i18n("Can't generate mail:\nNo event selected.")); |
2965 | return; | 2968 | return; |
2966 | } | 2969 | } |
2967 | if(anEvent->attendeeCount() == 0 ) { | 2970 | if(anEvent->attendeeCount() == 0 ) { |
2968 | KMessageBox::sorry(this, | 2971 | KMessageBox::sorry(this, |
2969 | i18n("Can't generate mail:\nNo attendees defined.\n")); | 2972 | i18n("Can't generate mail:\nNo attendees defined.\n")); |
2970 | return; | 2973 | return; |
2971 | } | 2974 | } |
2972 | 2975 | ||
2973 | mailobject.emailEvent(anEvent); | 2976 | mailobject.emailEvent(anEvent); |
2974 | #endif | 2977 | #endif |
2975 | } | 2978 | } |
2976 | 2979 | ||
2977 | 2980 | ||
2978 | void CalendarView::schedule_publish(Incidence *incidence) | 2981 | void CalendarView::schedule_publish(Incidence *incidence) |
2979 | { | 2982 | { |
2980 | Event *event = 0; | 2983 | Event *event = 0; |
2981 | Todo *todo = 0; | 2984 | Todo *todo = 0; |
2982 | 2985 | ||
2983 | if (incidence == 0) { | 2986 | if (incidence == 0) { |
2984 | incidence = mViewManager->currentView()->selectedIncidences().first(); | 2987 | incidence = mViewManager->currentView()->selectedIncidences().first(); |
2985 | if (incidence == 0) { | 2988 | if (incidence == 0) { |
2986 | incidence = mTodoList->selectedIncidences().first(); | 2989 | incidence = mTodoList->selectedIncidences().first(); |
2987 | } | 2990 | } |
2988 | } | 2991 | } |
2989 | if ( incidence && incidence->type() == "Event" ) { | 2992 | if ( incidence && incidence->type() == "Event" ) { |
2990 | event = static_cast<Event *>(incidence); | 2993 | event = static_cast<Event *>(incidence); |
2991 | } else { | 2994 | } else { |
2992 | if ( incidence && incidence->type() == "Todo" ) { | 2995 | if ( incidence && incidence->type() == "Todo" ) { |
2993 | todo = static_cast<Todo *>(incidence); | 2996 | todo = static_cast<Todo *>(incidence); |
2994 | } | 2997 | } |
2995 | } | 2998 | } |
2996 | 2999 | ||
2997 | if (!event && !todo) { | 3000 | if (!event && !todo) { |
2998 | KMessageBox::sorry(this,i18n("No event selected.")); | 3001 | KMessageBox::sorry(this,i18n("No event selected.")); |
2999 | return; | 3002 | return; |
3000 | } | 3003 | } |
3001 | 3004 | ||
3002 | PublishDialog *publishdlg = new PublishDialog(); | 3005 | PublishDialog *publishdlg = new PublishDialog(); |
3003 | if (incidence->attendeeCount()>0) { | 3006 | if (incidence->attendeeCount()>0) { |
3004 | QPtrList<Attendee> attendees = incidence->attendees(); | 3007 | QPtrList<Attendee> attendees = incidence->attendees(); |
3005 | attendees.first(); | 3008 | attendees.first(); |
3006 | while ( attendees.current()!=0 ) { | 3009 | while ( attendees.current()!=0 ) { |
3007 | publishdlg->addAttendee(attendees.current()); | 3010 | publishdlg->addAttendee(attendees.current()); |
3008 | attendees.next(); | 3011 | attendees.next(); |
3009 | } | 3012 | } |
3010 | } | 3013 | } |
3011 | bool send = true; | 3014 | bool send = true; |
3012 | if ( KOPrefs::instance()->mMailClient == KOPrefs::MailClientSendmail ) { | 3015 | if ( KOPrefs::instance()->mMailClient == KOPrefs::MailClientSendmail ) { |
3013 | if ( publishdlg->exec() != QDialog::Accepted ) | 3016 | if ( publishdlg->exec() != QDialog::Accepted ) |
3014 | send = false; | 3017 | send = false; |
3015 | } | 3018 | } |
3016 | if ( send ) { | 3019 | if ( send ) { |
3017 | OutgoingDialog *dlg = mDialogManager->outgoingDialog(); | 3020 | OutgoingDialog *dlg = mDialogManager->outgoingDialog(); |
3018 | if ( event ) { | 3021 | if ( event ) { |
3019 | Event *ev = new Event(*event); | 3022 | Event *ev = new Event(*event); |
3020 | ev->registerObserver(0); | 3023 | ev->registerObserver(0); |
3021 | ev->clearAttendees(); | 3024 | ev->clearAttendees(); |
3022 | if (!dlg->addMessage(ev,Scheduler::Publish,publishdlg->addresses())) { | 3025 | if (!dlg->addMessage(ev,Scheduler::Publish,publishdlg->addresses())) { |
3023 | delete(ev); | 3026 | delete(ev); |
3024 | } | 3027 | } |
3025 | } else { | 3028 | } else { |
3026 | if ( todo ) { | 3029 | if ( todo ) { |
3027 | Todo *ev = new Todo(*todo); | 3030 | Todo *ev = new Todo(*todo); |
3028 | ev->registerObserver(0); | 3031 | ev->registerObserver(0); |
3029 | ev->clearAttendees(); | 3032 | ev->clearAttendees(); |
3030 | if (!dlg->addMessage(ev,Scheduler::Publish,publishdlg->addresses())) { | 3033 | if (!dlg->addMessage(ev,Scheduler::Publish,publishdlg->addresses())) { |
3031 | delete(ev); | 3034 | delete(ev); |
3032 | } | 3035 | } |
3033 | } | 3036 | } |
3034 | } | 3037 | } |
3035 | } | 3038 | } |
3036 | delete publishdlg; | 3039 | delete publishdlg; |
3037 | } | 3040 | } |
3038 | 3041 | ||
3039 | void CalendarView::schedule_request(Incidence *incidence) | 3042 | void CalendarView::schedule_request(Incidence *incidence) |
3040 | { | 3043 | { |
3041 | schedule(Scheduler::Request,incidence); | 3044 | schedule(Scheduler::Request,incidence); |
3042 | } | 3045 | } |
3043 | 3046 | ||
3044 | void CalendarView::schedule_refresh(Incidence *incidence) | 3047 | void CalendarView::schedule_refresh(Incidence *incidence) |
3045 | { | 3048 | { |
3046 | schedule(Scheduler::Refresh,incidence); | 3049 | schedule(Scheduler::Refresh,incidence); |
3047 | } | 3050 | } |
3048 | 3051 | ||
3049 | void CalendarView::schedule_cancel(Incidence *incidence) | 3052 | void CalendarView::schedule_cancel(Incidence *incidence) |
3050 | { | 3053 | { |
3051 | schedule(Scheduler::Cancel,incidence); | 3054 | schedule(Scheduler::Cancel,incidence); |
3052 | } | 3055 | } |
3053 | 3056 | ||
3054 | void CalendarView::schedule_add(Incidence *incidence) | 3057 | void CalendarView::schedule_add(Incidence *incidence) |
3055 | { | 3058 | { |
3056 | schedule(Scheduler::Add,incidence); | 3059 | schedule(Scheduler::Add,incidence); |
3057 | } | 3060 | } |
3058 | 3061 | ||
3059 | void CalendarView::schedule_reply(Incidence *incidence) | 3062 | void CalendarView::schedule_reply(Incidence *incidence) |
3060 | { | 3063 | { |
3061 | schedule(Scheduler::Reply,incidence); | 3064 | schedule(Scheduler::Reply,incidence); |
3062 | } | 3065 | } |
3063 | 3066 | ||
3064 | void CalendarView::schedule_counter(Incidence *incidence) | 3067 | void CalendarView::schedule_counter(Incidence *incidence) |
3065 | { | 3068 | { |
3066 | schedule(Scheduler::Counter,incidence); | 3069 | schedule(Scheduler::Counter,incidence); |
3067 | } | 3070 | } |
3068 | 3071 | ||
3069 | void CalendarView::schedule_declinecounter(Incidence *incidence) | 3072 | void CalendarView::schedule_declinecounter(Incidence *incidence) |
3070 | { | 3073 | { |
3071 | schedule(Scheduler::Declinecounter,incidence); | 3074 | schedule(Scheduler::Declinecounter,incidence); |
3072 | } | 3075 | } |
3073 | 3076 | ||
3074 | void CalendarView::schedule_publish_freebusy(int daysToPublish) | 3077 | void CalendarView::schedule_publish_freebusy(int daysToPublish) |
3075 | { | 3078 | { |
diff --git a/korganizer/koprefs.cpp b/korganizer/koprefs.cpp index 651442b..258f738 100644 --- a/korganizer/koprefs.cpp +++ b/korganizer/koprefs.cpp | |||
@@ -1,572 +1,566 @@ | |||
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 <time.h> | 24 | #include <time.h> |
25 | #ifndef _WIN32_ | 25 | #ifndef _WIN32_ |
26 | #include <unistd.h> | 26 | #include <unistd.h> |
27 | #endif | 27 | #endif |
28 | #include <qdir.h> | 28 | #include <qdir.h> |
29 | #include <qtextstream.h> | 29 | #include <qtextstream.h> |
30 | #include <qtextcodec.h> | 30 | #include <qtextcodec.h> |
31 | #include <qstring.h> | 31 | #include <qstring.h> |
32 | #include <qregexp.h> | 32 | #include <qregexp.h> |
33 | #include <qfont.h> | 33 | #include <qfont.h> |
34 | #include <qcolor.h> | 34 | #include <qcolor.h> |
35 | #include <qstringlist.h> | 35 | #include <qstringlist.h> |
36 | #include <stdlib.h> | 36 | #include <stdlib.h> |
37 | 37 | ||
38 | #include <kglobal.h> | 38 | #include <kglobal.h> |
39 | #include <kconfig.h> | 39 | #include <kconfig.h> |
40 | #include <klocale.h> | 40 | #include <klocale.h> |
41 | #include <kdebug.h> | 41 | #include <kdebug.h> |
42 | #include <kemailsettings.h> | 42 | #include <kemailsettings.h> |
43 | #include <kstaticdeleter.h> | 43 | #include <kstaticdeleter.h> |
44 | #include <libkdepim/kpimglobalprefs.h> | 44 | #include <libkdepim/kpimglobalprefs.h> |
45 | 45 | ||
46 | #include "koprefs.h" | 46 | #include "koprefs.h" |
47 | #include "mainwindow.h" | 47 | #include "mainwindow.h" |
48 | 48 | ||
49 | const char *germanwords[][2] = { | 49 | const char *germanwords[][2] = { |
50 | #include "wordsgerman.h" | 50 | #include "wordsgerman.h" |
51 | "", "" | 51 | "", "" |
52 | }; | 52 | }; |
53 | 53 | ||
54 | KOPrefs *KOPrefs::mInstance = 0; | 54 | KOPrefs *KOPrefs::mInstance = 0; |
55 | static KStaticDeleter<KOPrefs> insd; | 55 | static KStaticDeleter<KOPrefs> insd; |
56 | 56 | ||
57 | KOPrefs::KOPrefs() : | 57 | KOPrefs::KOPrefs() : |
58 | KPimPrefs("korganizerrc") | 58 | KPimPrefs("korganizerrc") |
59 | { | 59 | { |
60 | mCategoryColors.setAutoDelete(true); | 60 | mCategoryColors.setAutoDelete(true); |
61 | mLocaleDict = 0; | 61 | mLocaleDict = 0; |
62 | fillMailDefaults(); | 62 | fillMailDefaults(); |
63 | mDefaultCategoryColor = QColor(175,210,255);//196,196,196); | 63 | mDefaultCategoryColor = QColor(175,210,255);//196,196,196); |
64 | QColor defaultHolidayColor = QColor(255,0,0); | 64 | QColor defaultHolidayColor = QColor(255,0,0); |
65 | QColor defaultHighlightColor = QColor(129,112,255);//64,64,255); | 65 | QColor defaultHighlightColor = QColor(129,112,255);//64,64,255); |
66 | QColor defaultAgendaBgColor = QColor(239,241,169);//128,128,128); | 66 | QColor defaultAgendaBgColor = QColor(239,241,169);//128,128,128); |
67 | QColor defaultWorkingHoursColor = QColor(170,223,150);//160,160,160); | 67 | QColor defaultWorkingHoursColor = QColor(170,223,150);//160,160,160); |
68 | QColor defaultTodoDueTodayColor = QColor(255,220,100); | 68 | QColor defaultTodoDueTodayColor = QColor(255,220,100); |
69 | QColor defaultTodoOverdueColor = QColor(255,153,125); | 69 | QColor defaultTodoOverdueColor = QColor(255,153,125); |
70 | 70 | ||
71 | mTimeBarFont = QFont("helvetica",10);//,QFont::Bold); | 71 | mTimeBarFont = QFont("helvetica",10);//,QFont::Bold); |
72 | mDefaultViewFont = QFont("helvetica",10); | 72 | mDefaultViewFont = QFont("helvetica",10); |
73 | mDefaultMonthViewFont = QFont("helvetica",8); | 73 | mDefaultMonthViewFont = QFont("helvetica",8); |
74 | mMarcusBainsFont= QFont("helvetica",10); | 74 | mMarcusBainsFont= QFont("helvetica",10); |
75 | mDateNavigatorFont= QFont("helvetica",10, QFont::Bold); | 75 | mDateNavigatorFont= QFont("helvetica",10, QFont::Bold); |
76 | mEditBoxFont = QFont("helvetica",12); | 76 | mEditBoxFont = QFont("helvetica",12); |
77 | mJornalViewFont = QFont("helvetica",12); | 77 | mJornalViewFont = QFont("helvetica",12); |
78 | 78 | ||
79 | KPrefs::setCurrentGroup("General"); | 79 | KPrefs::setCurrentGroup("General"); |
80 | 80 | ||
81 | 81 | ||
82 | addItemBool("Enable Group Scheduling",&mEnableGroupScheduling,false); | 82 | addItemBool("Enable Group Scheduling",&mEnableGroupScheduling,false); |
83 | 83 | ||
84 | addItemBool("ShowIconNewTodo",&mShowIconNewTodo,true); | 84 | addItemBool("ShowIconNewTodo",&mShowIconNewTodo,true); |
85 | addItemBool("ShowIconNewEvent",&mShowIconNewEvent,true); | 85 | addItemBool("ShowIconNewEvent",&mShowIconNewEvent,true); |
86 | addItemBool("ShowIconSearch",&mShowIconSearch,true); | 86 | addItemBool("ShowIconSearch",&mShowIconSearch,true); |
87 | addItemBool("ShowIconList",&mShowIconList,true); | 87 | addItemBool("ShowIconList",&mShowIconList,true); |
88 | addItemBool("ShowIconDay1",&mShowIconDay1,true); | 88 | addItemBool("ShowIconDay1",&mShowIconDay1,true); |
89 | addItemBool("ShowIconDay5",&mShowIconDay5,true); | 89 | addItemBool("ShowIconDay5",&mShowIconDay5,true); |
90 | addItemBool("ShowIconDay7",&mShowIconDay7,true); | 90 | addItemBool("ShowIconDay7",&mShowIconDay7,true); |
91 | addItemBool("ShowIconMonth",&mShowIconMonth,true); | 91 | addItemBool("ShowIconMonth",&mShowIconMonth,true); |
92 | addItemBool("ShowIconTodoview",&mShowIconTodoview,true); | 92 | addItemBool("ShowIconTodoview",&mShowIconTodoview,true); |
93 | addItemBool("ShowIconBackFast",&mShowIconBackFast,true); | 93 | addItemBool("ShowIconBackFast",&mShowIconBackFast,true); |
94 | addItemBool("ShowIconBack",&mShowIconBack,true); | 94 | addItemBool("ShowIconBack",&mShowIconBack,true); |
95 | addItemBool("ShowIconToday",&mShowIconToday,true); | 95 | addItemBool("ShowIconToday",&mShowIconToday,true); |
96 | addItemBool("ShowIconForward",&mShowIconForward,true); | 96 | addItemBool("ShowIconForward",&mShowIconForward,true); |
97 | addItemBool("ShowIconForwardFast",&mShowIconForwardFast,true); | 97 | addItemBool("ShowIconForwardFast",&mShowIconForwardFast,true); |
98 | addItemBool("ShowIconWhatsThis",&mShowIconWhatsThis,false); | 98 | addItemBool("ShowIconWhatsThis",&mShowIconWhatsThis,false); |
99 | addItemBool("ShowIconNextDays",&mShowIconNextDays,true); | 99 | addItemBool("ShowIconNextDays",&mShowIconNextDays,true); |
100 | addItemBool("ShowIconNext",&mShowIconNext,true); | 100 | addItemBool("ShowIconNext",&mShowIconNext,true); |
101 | addItemBool("ShowIconJournal",&mShowIconJournal,true); | 101 | addItemBool("ShowIconJournal",&mShowIconJournal,true); |
102 | addItemBool("ShowIconStretch",&mShowIconStretch,true); | 102 | addItemBool("ShowIconStretch",&mShowIconStretch,true); |
103 | addItemBool("LanguageChanged",&mLanguageChanged,false); | 103 | addItemBool("LanguageChanged",&mLanguageChanged,false); |
104 | 104 | ||
105 | addItemBool("AskForQuit",&mAskForQuit,false); | 105 | addItemBool("AskForQuit",&mAskForQuit,false); |
106 | 106 | ||
107 | #ifndef DESKTOP_VERSION | 107 | #ifndef DESKTOP_VERSION |
108 | addItemBool("ShowFullMenu",&mShowFullMenu,false); | 108 | addItemBool("ShowFullMenu",&mShowFullMenu,false); |
109 | #else | 109 | #else |
110 | addItemBool("ShowFullMenu",&mShowFullMenu,true); | 110 | addItemBool("ShowFullMenu",&mShowFullMenu,true); |
111 | #endif | 111 | #endif |
112 | addItemBool("ToolBarHor",&mToolBarHor, true ); | 112 | addItemBool("ToolBarHor",&mToolBarHor, true ); |
113 | addItemBool("ToolBarUp",&mToolBarUp, false ); | 113 | addItemBool("ToolBarUp",&mToolBarUp, false ); |
114 | addItemBool("ToolBarMiniIcons",&mToolBarMiniIcons, false ); | 114 | addItemBool("ToolBarMiniIcons",&mToolBarMiniIcons, false ); |
115 | addItemInt("Whats Next Days",&mWhatsNextDays,3); | 115 | addItemInt("Whats Next Days",&mWhatsNextDays,3); |
116 | addItemInt("Whats Next Prios",&mWhatsNextPrios,1); | 116 | addItemInt("Whats Next Prios",&mWhatsNextPrios,1); |
117 | 117 | ||
118 | addItemBool("ShowTodoInAgenda",&mShowTodoInAgenda,true); | 118 | addItemBool("ShowTodoInAgenda",&mShowTodoInAgenda,true); |
119 | addItemBool("ShowCompletedTodo",&mShowCompletedTodo,true); | 119 | addItemBool("ShowCompletedTodo",&mShowCompletedTodo,true); |
120 | addItemInt("AllDay Size",&mAllDaySize,28); | 120 | addItemInt("AllDay Size",&mAllDaySize,28); |
121 | QString defAlarm = KGlobal::iconLoader()->iconPath()+"koalarm.wav"; | 121 | QString defAlarm = KGlobal::iconLoader()->iconPath()+"koalarm.wav"; |
122 | addItemString("DefaultAlarmFile",&mDefaultAlarmFile,defAlarm ); | 122 | addItemString("DefaultAlarmFile",&mDefaultAlarmFile,defAlarm ); |
123 | 123 | ||
124 | addItemStringList("LocationDefaults",&mLocationDefaults ); | 124 | addItemStringList("LocationDefaults",&mLocationDefaults ); |
125 | addItemStringList("EventSummary User",&mEventSummaryUser); | 125 | addItemStringList("EventSummary User",&mEventSummaryUser); |
126 | addItemStringList("TodoSummary User",&mTodoSummaryUser); | 126 | addItemStringList("TodoSummary User",&mTodoSummaryUser); |
127 | 127 | ||
128 | addItemBool("Enable Group Scheduling",&mEnableGroupScheduling,false); | 128 | addItemBool("Enable Group Scheduling",&mEnableGroupScheduling,false); |
129 | addItemBool("Enable Project View",&mEnableProjectView,false); | 129 | addItemBool("Enable Project View",&mEnableProjectView,false); |
130 | addItemBool("Auto Save",&mAutoSave,false); | 130 | addItemBool("Auto Save",&mAutoSave,false); |
131 | addItemInt("Auto Save Interval",&mAutoSaveInterval,3); | 131 | addItemInt("Auto Save Interval",&mAutoSaveInterval,3); |
132 | addItemBool("Confirm Deletes",&mConfirm,true); | 132 | addItemBool("Confirm Deletes",&mConfirm,true); |
133 | addItemString("Archive File",&mArchiveFile); | 133 | addItemString("Archive File",&mArchiveFile); |
134 | addItemString("Html Export File",&mHtmlExportFile, | 134 | addItemString("Html Export File",&mHtmlExportFile, |
135 | QDir::homeDirPath() + "/" + i18n("Default export file", "calendar.html")); | 135 | QDir::homeDirPath() + "/" + i18n("Default export file", "calendar.html")); |
136 | addItemBool("Html With Save",&mHtmlWithSave,false); | 136 | addItemBool("Html With Save",&mHtmlWithSave,false); |
137 | 137 | ||
138 | KPrefs::setCurrentGroup("Personal Settings"); | 138 | KPrefs::setCurrentGroup("Personal Settings"); |
139 | 139 | ||
140 | addItemInt("Mail Client",&mMailClient,MailClientKMail); | 140 | addItemInt("Mail Client",&mMailClient,MailClientKMail); |
141 | addItemBool("Use Control Center Email",&mEmailControlCenter,false); | 141 | addItemBool("Use Control Center Email",&mEmailControlCenter,false); |
142 | addItemBool("Bcc",&mBcc,false); | 142 | addItemBool("Bcc",&mBcc,false); |
143 | 143 | ||
144 | KPrefs::setCurrentGroup("Time & Date"); | 144 | KPrefs::setCurrentGroup("Time & Date"); |
145 | 145 | ||
146 | // addItemString("Time Zone",&mTimeZone,"+0100"); | 146 | // addItemString("Time Zone",&mTimeZone,"+0100"); |
147 | addItemString("TimeZoneName",&mTimeZoneId,i18n ("+01:00 Europe/Oslo(CET)") ); | 147 | addItemString("TimeZoneName",&mTimeZoneId,i18n ("+01:00 Europe/Oslo(CET)") ); |
148 | // addItemInt("TimeZoneOffset",&mTimeZoneOffset,60); | 148 | // addItemInt("TimeZoneOffset",&mTimeZoneOffset,60); |
149 | addItemBool("UseDaylightsaving",&mUseDaylightsaving,true); | 149 | addItemBool("UseDaylightsaving",&mUseDaylightsaving,true); |
150 | addItemInt("DaylightsavingStart",&mDaylightsavingStart,90); | 150 | addItemInt("DaylightsavingStart",&mDaylightsavingStart,90); |
151 | addItemInt("DaylightsavingEnd",&mDaylightsavingEnd,304); | 151 | addItemInt("DaylightsavingEnd",&mDaylightsavingEnd,304); |
152 | 152 | ||
153 | 153 | ||
154 | addItemInt("Default Start Time",&mStartTime,10); | 154 | addItemInt("Default Start Time",&mStartTime,10); |
155 | addItemInt("Default Duration",&mDefaultDuration,2); | 155 | addItemInt("Default Duration",&mDefaultDuration,2); |
156 | addItemInt("Default Alarm Time",&mAlarmTime,3); | 156 | addItemInt("Default Alarm Time",&mAlarmTime,3); |
157 | addItemInt("Daylight Savings",&mDaylightSavings,0); | 157 | addItemInt("Daylight Savings",&mDaylightSavings,0); |
158 | KPrefs::setCurrentGroup("AlarmSettings"); | 158 | KPrefs::setCurrentGroup("AlarmSettings"); |
159 | addItemInt("AlarmPlayBeeps",&mAlarmPlayBeeps,20); | 159 | addItemInt("AlarmPlayBeeps",&mAlarmPlayBeeps,20); |
160 | addItemInt("AlarmSuspendTime",&mAlarmSuspendTime,7); | 160 | addItemInt("AlarmSuspendTime",&mAlarmSuspendTime,7); |
161 | addItemInt("AlarmSuspendCount",&mAlarmSuspendCount,5); | 161 | addItemInt("AlarmSuspendCount",&mAlarmSuspendCount,5); |
162 | addItemInt("AlarmBeepInterval",&mAlarmBeepInterval,3); | 162 | addItemInt("AlarmBeepInterval",&mAlarmBeepInterval,3); |
163 | 163 | ||
164 | 164 | ||
165 | KPrefs::setCurrentGroup("Calendar"); | 165 | KPrefs::setCurrentGroup("Calendar"); |
166 | 166 | ||
167 | addItemInt("Default Calendar Format",&mDefaultFormat,FormatICalendar); | 167 | addItemInt("Default Calendar Format",&mDefaultFormat,FormatICalendar); |
168 | 168 | ||
169 | KPrefs::setCurrentGroup("Fonts"); | 169 | KPrefs::setCurrentGroup("Fonts"); |
170 | // qDebug(" KPrefs::setCurrentGroup(Fonts); "); | 170 | // qDebug(" KPrefs::setCurrentGroup(Fonts); "); |
171 | addItemFont("TimeBar Font",&mTimeBarFont); | 171 | addItemFont("TimeBar Font",&mTimeBarFont); |
172 | addItemFont("MonthView Font",&mMonthViewFont); | 172 | addItemFont("MonthView Font",&mMonthViewFont); |
173 | addItemFont("AgendaView Font",&mAgendaViewFont); | 173 | addItemFont("AgendaView Font",&mAgendaViewFont); |
174 | addItemFont("MarcusBains Font",&mMarcusBainsFont); | 174 | addItemFont("MarcusBains Font",&mMarcusBainsFont); |
175 | addItemFont("TimeLabels Font",&mTimeLabelsFont); | 175 | addItemFont("TimeLabels Font",&mTimeLabelsFont); |
176 | addItemFont("TodoView Font",&mTodoViewFont); | 176 | addItemFont("TodoView Font",&mTodoViewFont); |
177 | addItemFont("ListView Font",&mListViewFont); | 177 | addItemFont("ListView Font",&mListViewFont); |
178 | addItemFont("DateNavigator Font",&mDateNavigatorFont); | 178 | addItemFont("DateNavigator Font",&mDateNavigatorFont); |
179 | addItemFont("EditBox Font",&mEditBoxFont); | 179 | addItemFont("EditBox Font",&mEditBoxFont); |
180 | addItemFont("JournalView Font",&mJornalViewFont); | 180 | addItemFont("JournalView Font",&mJornalViewFont); |
181 | addItemFont("WhatsNextView Font",&mWhatsNextFont); | 181 | addItemFont("WhatsNextView Font",&mWhatsNextFont); |
182 | addItemFont("EventView Font",&mEventViewFont); | 182 | addItemFont("EventView Font",&mEventViewFont); |
183 | 183 | ||
184 | // KPrefs::setCurrentGroup("SyncProfiles"); | 184 | // KPrefs::setCurrentGroup("SyncProfiles"); |
185 | // addItemString("LocalMachineName",&mLocalMachineName, "undefined"); | 185 | // addItemString("LocalMachineName",&mLocalMachineName, "undefined"); |
186 | // addItemStringList("SyncProfileNames",&mSyncProfileNames); | 186 | // addItemStringList("SyncProfileNames",&mSyncProfileNames); |
187 | // addItemStringList("ExternSyncProfiles",&mExternSyncProfileNames); | 187 | // addItemStringList("ExternSyncProfiles",&mExternSyncProfileNames); |
188 | 188 | ||
189 | KPrefs::setCurrentGroup("RemoteSyncing"); | 189 | KPrefs::setCurrentGroup("RemoteSyncing"); |
190 | // addItemBool("UsePasswd",&mUsePassWd,false); | 190 | // addItemBool("UsePasswd",&mUsePassWd,false); |
191 | // addItemBool("WriteBackFile",&mWriteBackFile,true); | 191 | // addItemBool("WriteBackFile",&mWriteBackFile,true); |
192 | // addItemBool("WriteBackExistingOnly",&mWriteBackExistingOnly,false); | 192 | // addItemBool("WriteBackExistingOnly",&mWriteBackExistingOnly,false); |
193 | // addItemBool("AskForPreferences",&mAskForPreferences,true); | 193 | // addItemBool("AskForPreferences",&mAskForPreferences,true); |
194 | // addItemBool("ShowSyncSummary",&mShowSyncSummary,true); | 194 | // addItemBool("ShowSyncSummary",&mShowSyncSummary,true); |
195 | addItemString("ActiveSyncPort",&mActiveSyncPort,"9197" ); | 195 | addItemString("ActiveSyncPort",&mActiveSyncPort,"9197" ); |
196 | addItemString("ActiveSyncIP",&mActiveSyncIP,"192.168.0.40" ); | 196 | addItemString("ActiveSyncIP",&mActiveSyncIP,"192.168.0.40" ); |
197 | addItemBool("ShowSyncEvents",&mShowSyncEvents,false); | 197 | addItemBool("ShowSyncEvents",&mShowSyncEvents,false); |
198 | addItemInt("LastSyncTime",&mLastSyncTime,0); | 198 | addItemInt("LastSyncTime",&mLastSyncTime,0); |
199 | 199 | ||
200 | #ifdef _WIN32_ | 200 | #ifdef _WIN32_ |
201 | QString hdp= locateLocal("data","korganizer")+"\\\\"; | 201 | QString hdp= locateLocal("data","korganizer")+"\\\\"; |
202 | #else | 202 | #else |
203 | QString hdp= locateLocal("data","korganizer")+"/"; | 203 | QString hdp= locateLocal("data","korganizer")+"/"; |
204 | #endif | 204 | #endif |
205 | // addItemString("RemoteIP",&mRemoteIP, "192.168.0.65"); | ||
206 | // addItemString("RemoteUser",&mRemoteUser, "zaurus"); | ||
207 | // addItemString("RemotePassWd",&mRemotePassWd, ""); | ||
208 | // addItemString("RemoteFile", &mRemoteFile, hdp+"mycalendar.ics"); | ||
209 | // addItemString("LocalTempFile",&mLocalTempFile, "/tmp/tempsyncfile.ics" ); | ||
210 | |||
211 | 205 | ||
212 | KPrefs::setCurrentGroup("LoadSaveFileNames"); | 206 | KPrefs::setCurrentGroup("LoadSaveFileNames"); |
213 | 207 | ||
214 | addItemString("LastImportFile", &mLastImportFile ,hdp +"import.ics" ); | 208 | addItemString("LastImportFile", &mLastImportFile ,hdp +"import.ics" ); |
215 | addItemString("LastVcalFile", &mLastVcalFile ,hdp +"export.vcs" ); | 209 | addItemString("LastVcalFile", &mLastVcalFile ,hdp +"export.vcs" ); |
216 | addItemString("LastSaveFile", &mLastSaveFile ,hdp +"mybackup.ics" ); | 210 | addItemString("LastSaveFile", &mLastSaveFile ,hdp +"mybackup.ics" ); |
217 | addItemString("LastLoadFile", &mLastLoadFile ,hdp +"mybackup.ics" ); | 211 | addItemString("LastLoadFile", &mLastLoadFile ,hdp +"mybackup.ics" ); |
218 | 212 | ||
219 | 213 | ||
220 | KPrefs::setCurrentGroup("Locale"); | 214 | KPrefs::setCurrentGroup("Locale"); |
221 | addItemInt("PreferredLanguage",&mPreferredLanguage,0); | 215 | addItemInt("PreferredLanguage",&mPreferredLanguage,0); |
222 | addItemInt("PreferredTime",&mPreferredTime,0); | 216 | addItemInt("PreferredTime",&mPreferredTime,0); |
223 | addItemInt("PreferredDate",&mPreferredDate,0); | 217 | addItemInt("PreferredDate",&mPreferredDate,0); |
224 | addItemBool("WeekStartsOnSunday",&mWeekStartsOnSunday,false); | 218 | addItemBool("WeekStartsOnSunday",&mWeekStartsOnSunday,false); |
225 | addItemBool("ShortDateInViewer",&mShortDateInViewer,false); | 219 | addItemBool("ShortDateInViewer",&mShortDateInViewer,false); |
226 | addItemString("UserDateFormatLong", &mUserDateFormatLong, "%A %d %b %y"); | 220 | addItemString("UserDateFormatLong", &mUserDateFormatLong, "%A %d %b %y"); |
227 | addItemString("UserDateFormatShort", &mUserDateFormatShort, "%aK %d.%m.%y"); | 221 | addItemString("UserDateFormatShort", &mUserDateFormatShort, "%aK %d.%m.%y"); |
228 | 222 | ||
229 | 223 | ||
230 | KPrefs::setCurrentGroup("Colors"); | 224 | KPrefs::setCurrentGroup("Colors"); |
231 | addItemColor("Holiday Color",&mHolidayColor,defaultHolidayColor); | 225 | addItemColor("Holiday Color",&mHolidayColor,defaultHolidayColor); |
232 | addItemColor("Highlight Color",&mHighlightColor,defaultHighlightColor); | 226 | addItemColor("Highlight Color",&mHighlightColor,defaultHighlightColor); |
233 | addItemColor("Event Color",&mEventColor,mDefaultCategoryColor); | 227 | addItemColor("Event Color",&mEventColor,mDefaultCategoryColor); |
234 | addItemColor("Agenda Background Color",&mAgendaBgColor,defaultAgendaBgColor); | 228 | addItemColor("Agenda Background Color",&mAgendaBgColor,defaultAgendaBgColor); |
235 | addItemColor("WorkingHours Color",&mWorkingHoursColor,defaultWorkingHoursColor); | 229 | addItemColor("WorkingHours Color",&mWorkingHoursColor,defaultWorkingHoursColor); |
236 | addItemColor("Todo due today Color",&mTodoDueTodayColor,defaultTodoDueTodayColor); | 230 | addItemColor("Todo due today Color",&mTodoDueTodayColor,defaultTodoDueTodayColor); |
237 | addItemColor("Todo overdue Color",&mTodoOverdueColor,defaultTodoOverdueColor); | 231 | addItemColor("Todo overdue Color",&mTodoOverdueColor,defaultTodoOverdueColor); |
238 | addItemColor("MonthViewEvenColor",&mMonthViewEvenColor,QColor( 160,160,255 )); | 232 | addItemColor("MonthViewEvenColor",&mMonthViewEvenColor,QColor( 160,160,255 )); |
239 | addItemColor("MonthViewOddColor",&mMonthViewOddColor,QColor( 160,255,160 )); | 233 | addItemColor("MonthViewOddColor",&mMonthViewOddColor,QColor( 160,255,160 )); |
240 | addItemColor("MonthViewHolidayColor",&mMonthViewHolidayColor,QColor( 255,160,160 )); | 234 | addItemColor("MonthViewHolidayColor",&mMonthViewHolidayColor,QColor( 255,160,160 )); |
241 | addItemBool("MonthViewUsesDayColors",&mMonthViewUsesDayColors,true); | 235 | addItemBool("MonthViewUsesDayColors",&mMonthViewUsesDayColors,true); |
242 | addItemBool("MonthViewSatSunTog",&mMonthViewSatSunTog,true); | 236 | addItemBool("MonthViewSatSunTog",&mMonthViewSatSunTog,true); |
243 | addItemBool("HightlightDateTimeEdit",&mHightlightDateTimeEdit,false); | 237 | addItemBool("HightlightDateTimeEdit",&mHightlightDateTimeEdit,false); |
244 | addItemColor("AppColor1",&mAppColor1,QColor( 130,170,255 )); | 238 | addItemColor("AppColor1",&mAppColor1,QColor( 130,170,255 )); |
245 | addItemColor("AppColor2",&mAppColor2,QColor( 174,216,255 )); | 239 | addItemColor("AppColor2",&mAppColor2,QColor( 174,216,255 )); |
246 | addItemBool("UseAppColors",&mUseAppColors,false); | 240 | addItemBool("UseAppColors",&mUseAppColors,false); |
247 | 241 | ||
248 | 242 | ||
249 | 243 | ||
250 | KPrefs::setCurrentGroup("Views"); | 244 | KPrefs::setCurrentGroup("Views"); |
251 | addItemInt("Hour Size",&mHourSize,8); | 245 | addItemInt("Hour Size",&mHourSize,8); |
252 | addItemBool("Show Daily Recurrences",&mDailyRecur,true); | 246 | addItemBool("Show Daily Recurrences",&mDailyRecur,true); |
253 | addItemBool("Show Weekly Recurrences",&mWeeklyRecur,true); | 247 | addItemBool("Show Weekly Recurrences",&mWeeklyRecur,true); |
254 | addItemBool("Show Month Daily Recurrences",&mMonthDailyRecur,true); | 248 | addItemBool("Show Month Daily Recurrences",&mMonthDailyRecur,true); |
255 | addItemBool("Show Month Weekly Recurrences",&mMonthWeeklyRecur,true); | 249 | addItemBool("Show Month Weekly Recurrences",&mMonthWeeklyRecur,true); |
256 | addItemBool("ShowShortMonthName",&mMonthShowShort,false); | 250 | addItemBool("ShowShortMonthName",&mMonthShowShort,false); |
257 | addItemBool("ShowIconsInMonthCell",&mMonthShowIcons,true); | 251 | addItemBool("ShowIconsInMonthCell",&mMonthShowIcons,true); |
258 | addItemBool("Enable ToolTips",&mEnableToolTips,false); | 252 | addItemBool("Enable ToolTips",&mEnableToolTips,false); |
259 | addItemBool("Enable MonthView ScrollBars",&mEnableMonthScroll,false); | 253 | addItemBool("Enable MonthView ScrollBars",&mEnableMonthScroll,false); |
260 | addItemBool("Marcus Bains shows seconds",&mMarcusBainsShowSeconds,false); | 254 | addItemBool("Marcus Bains shows seconds",&mMarcusBainsShowSeconds,false); |
261 | addItemBool("Show Marcus Bains",&mMarcusBainsEnabled,true); | 255 | addItemBool("Show Marcus Bains",&mMarcusBainsEnabled,true); |
262 | addItemBool("EditOnDoubleClick",&mEditOnDoubleClick,true); | 256 | addItemBool("EditOnDoubleClick",&mEditOnDoubleClick,true); |
263 | addItemBool("ViewChangeHoldFullscreen",&mViewChangeHoldFullscreen,false); | 257 | addItemBool("ViewChangeHoldFullscreen",&mViewChangeHoldFullscreen,false); |
264 | addItemBool("ViewChangeHoldNonFullscreen",&mViewChangeHoldNonFullscreen,false); | 258 | addItemBool("ViewChangeHoldNonFullscreen",&mViewChangeHoldNonFullscreen,false); |
265 | addItemBool("CenterOnCurrentTime",&mCenterOnCurrentTime,false); | 259 | addItemBool("CenterOnCurrentTime",&mCenterOnCurrentTime,false); |
266 | addItemBool("SetTimeToDayStartAt",&mSetTimeToDayStartAt,true); | 260 | addItemBool("SetTimeToDayStartAt",&mSetTimeToDayStartAt,true); |
267 | addItemBool("HighlightCurrentDay",&mHighlightCurrentDay,true); | 261 | addItemBool("HighlightCurrentDay",&mHighlightCurrentDay,true); |
268 | addItemBool("WNViewShowsParents",&mWNViewShowsParents,true); | 262 | addItemBool("WNViewShowsParents",&mWNViewShowsParents,true); |
269 | addItemBool("WNViewShowLocation",&mWNViewShowLocation,false); | 263 | addItemBool("WNViewShowLocation",&mWNViewShowLocation,false); |
270 | addItemBool("UseHighlightLightColor",&mUseHighlightLightColor,false); | 264 | addItemBool("UseHighlightLightColor",&mUseHighlightLightColor,false); |
271 | addItemBool("ListViewMonthTimespan",&mListViewMonthTimespan,true); | 265 | addItemBool("ListViewMonthTimespan",&mListViewMonthTimespan,true); |
272 | addItemBool("TodoViewUsesCatColors",&mTodoViewUsesCatColors,false); | 266 | addItemBool("TodoViewUsesCatColors",&mTodoViewUsesCatColors,false); |
273 | addItemBool("TodoViewShowsPercentage",&mTodoViewShowsPercentage,false); | 267 | addItemBool("TodoViewShowsPercentage",&mTodoViewShowsPercentage,false); |
274 | addItemBool("TodoViewUsesSmallFont",&mTodoViewUsesSmallFont,false); | 268 | addItemBool("TodoViewUsesSmallFont",&mTodoViewUsesSmallFont,false); |
275 | addItemBool("TodoViewUsesForegroundColor",&mTodoViewUsesForegroundColor,false); | 269 | addItemBool("TodoViewUsesForegroundColor",&mTodoViewUsesForegroundColor,false); |
276 | addItemBool("MonthViewUsesForegroundColor",&mMonthViewUsesForegroundColor,false); | 270 | addItemBool("MonthViewUsesForegroundColor",&mMonthViewUsesForegroundColor,false); |
277 | #ifdef DESKTOP_VERSION | 271 | #ifdef DESKTOP_VERSION |
278 | addItemBool("UseInternalAlarmNotification",&mUseInternalAlarmNotification,true); | 272 | addItemBool("UseInternalAlarmNotification",&mUseInternalAlarmNotification,true); |
279 | #else | 273 | #else |
280 | addItemBool("UseInternalAlarmNotification",&mUseInternalAlarmNotification,false); | 274 | addItemBool("UseInternalAlarmNotification",&mUseInternalAlarmNotification,false); |
281 | #endif | 275 | #endif |
282 | addItemInt("Day Begins",&mDayBegins,7); | 276 | addItemInt("Day Begins",&mDayBegins,7); |
283 | addItemInt("Working Hours Start",&mWorkingHoursStart,8); | 277 | addItemInt("Working Hours Start",&mWorkingHoursStart,8); |
284 | addItemInt("Working Hours End",&mWorkingHoursEnd,17); | 278 | addItemInt("Working Hours End",&mWorkingHoursEnd,17); |
285 | addItemBool("Exclude Holidays",&mExcludeHolidays,true); | 279 | addItemBool("Exclude Holidays",&mExcludeHolidays,true); |
286 | addItemBool("Exclude Saturdays",&mExcludeSaturdays,true); | 280 | addItemBool("Exclude Saturdays",&mExcludeSaturdays,true); |
287 | 281 | ||
288 | addItemBool("Month View Uses Category Color",&mMonthViewUsesCategoryColor,false); | 282 | addItemBool("Month View Uses Category Color",&mMonthViewUsesCategoryColor,false); |
289 | addItemBool("Full View Month",&mFullViewMonth,true); | 283 | addItemBool("Full View Month",&mFullViewMonth,true); |
290 | addItemBool("Full View Todo",&mFullViewTodo,true); | 284 | addItemBool("Full View Todo",&mFullViewTodo,true); |
291 | addItemBool("Quick Todo",&mEnableQuickTodo,false); | 285 | addItemBool("Quick Todo",&mEnableQuickTodo,false); |
292 | 286 | ||
293 | addItemInt("Next X Days",&mNextXDays,3); | 287 | addItemInt("Next X Days",&mNextXDays,3); |
294 | 288 | ||
295 | KPrefs::setCurrentGroup("Printer"); | 289 | KPrefs::setCurrentGroup("Printer"); |
296 | 290 | ||
297 | KPrefs::setCurrentGroup("Layout"); | 291 | KPrefs::setCurrentGroup("Layout"); |
298 | 292 | ||
299 | addItemBool("CompactDialogs",&mCompactDialogs,false); | 293 | addItemBool("CompactDialogs",&mCompactDialogs,false); |
300 | addItemBool("VerticalScreen",&mVerticalScreen,true); | 294 | addItemBool("VerticalScreen",&mVerticalScreen,true); |
301 | 295 | ||
302 | KPrefs::setCurrentGroup("KOrganizer Plugins"); | 296 | KPrefs::setCurrentGroup("KOrganizer Plugins"); |
303 | 297 | ||
304 | addItemStringList("SelectedPlugins",&mSelectedPlugins,"holidays"); | 298 | addItemStringList("SelectedPlugins",&mSelectedPlugins,"holidays"); |
305 | 299 | ||
306 | KPrefs::setCurrentGroup("Group Scheduling"); | 300 | KPrefs::setCurrentGroup("Group Scheduling"); |
307 | 301 | ||
308 | addItemInt("IMIPScheduler",&mIMIPScheduler,IMIPKMail); | 302 | addItemInt("IMIPScheduler",&mIMIPScheduler,IMIPKMail); |
309 | addItemInt("IMIPSend",&mIMIPSend,IMIPdirectsend); | 303 | addItemInt("IMIPSend",&mIMIPSend,IMIPdirectsend); |
310 | addItemStringList("AdditionalMails",&mAdditionalMails,""); | 304 | addItemStringList("AdditionalMails",&mAdditionalMails,""); |
311 | addItemInt("IMIP auto refresh",&mIMIPAutoRefresh,neverAuto); | 305 | addItemInt("IMIP auto refresh",&mIMIPAutoRefresh,neverAuto); |
312 | addItemInt("IMIP auto insert request",&mIMIPAutoInsertRequest,neverAuto); | 306 | addItemInt("IMIP auto insert request",&mIMIPAutoInsertRequest,neverAuto); |
313 | addItemInt("IMIP auto insert reply",&mIMIPAutoInsertReply,neverAuto); | 307 | addItemInt("IMIP auto insert reply",&mIMIPAutoInsertReply,neverAuto); |
314 | addItemInt("IMIP auto FreeBusy",&mIMIPAutoFreeBusy,neverAuto); | 308 | addItemInt("IMIP auto FreeBusy",&mIMIPAutoFreeBusy,neverAuto); |
315 | addItemInt("IMIP auto save FreeBusy",&mIMIPAutoFreeBusyReply,neverAuto); | 309 | addItemInt("IMIP auto save FreeBusy",&mIMIPAutoFreeBusyReply,neverAuto); |
316 | 310 | ||
317 | KPrefs::setCurrentGroup( "Editors" ); | 311 | KPrefs::setCurrentGroup( "Editors" ); |
318 | 312 | ||
319 | addItemStringList( "EventTemplates", &mEventTemplates ); | 313 | addItemStringList( "EventTemplates", &mEventTemplates ); |
320 | addItemStringList( "TodoTemplates", &mTodoTemplates ); | 314 | addItemStringList( "TodoTemplates", &mTodoTemplates ); |
321 | 315 | ||
322 | addItemInt("DestinationPolicy",&mDestination,standardDestination); | 316 | addItemInt("DestinationPolicy",&mDestination,standardDestination); |
323 | 317 | ||
324 | 318 | ||
325 | 319 | ||
326 | } | 320 | } |
327 | 321 | ||
328 | 322 | ||
329 | KOPrefs::~KOPrefs() | 323 | KOPrefs::~KOPrefs() |
330 | { | 324 | { |
331 | if (mInstance == this) | 325 | if (mInstance == this) |
332 | mInstance = insd.setObject(0); | 326 | mInstance = insd.setObject(0); |
333 | setLocaleDict( 0 ); | 327 | setLocaleDict( 0 ); |
334 | if ( mLocaleDict ) | 328 | if ( mLocaleDict ) |
335 | delete mLocaleDict; | 329 | delete mLocaleDict; |
336 | //qDebug("KOPrefs::~KOPrefs() "); | 330 | //qDebug("KOPrefs::~KOPrefs() "); |
337 | } | 331 | } |
338 | 332 | ||
339 | 333 | ||
340 | KOPrefs *KOPrefs::instance() | 334 | KOPrefs *KOPrefs::instance() |
341 | { | 335 | { |
342 | if (!mInstance) { | 336 | if (!mInstance) { |
343 | mInstance = insd.setObject(new KOPrefs()); | 337 | mInstance = insd.setObject(new KOPrefs()); |
344 | mInstance->readConfig(); | 338 | mInstance->readConfig(); |
345 | } | 339 | } |
346 | 340 | ||
347 | return mInstance; | 341 | return mInstance; |
348 | } | 342 | } |
349 | 343 | ||
350 | void KOPrefs::usrSetDefaults() | 344 | void KOPrefs::usrSetDefaults() |
351 | { | 345 | { |
352 | 346 | ||
353 | } | 347 | } |
354 | 348 | ||
355 | void KOPrefs::fillMailDefaults() | 349 | void KOPrefs::fillMailDefaults() |
356 | { | 350 | { |
357 | if (mName.isEmpty()) mName = i18n("Anonymous"); | 351 | if (mName.isEmpty()) mName = i18n("Anonymous"); |
358 | if (mEmail.isEmpty()) mEmail = i18n("nobody@nowhere"); | 352 | if (mEmail.isEmpty()) mEmail = i18n("nobody@nowhere"); |
359 | } | 353 | } |
360 | 354 | ||
361 | void KOPrefs::setTimeZoneIdDefault() | 355 | void KOPrefs::setTimeZoneIdDefault() |
362 | { | 356 | { |
363 | mTimeZoneId = i18n("+01:00 Europe/Oslo(CET)"); | 357 | mTimeZoneId = i18n("+01:00 Europe/Oslo(CET)"); |
364 | } | 358 | } |
365 | 359 | ||
366 | void KOPrefs::setCategoryDefaults() | 360 | void KOPrefs::setCategoryDefaults() |
367 | { | 361 | { |
368 | mCustomCategories.clear(); | 362 | mCustomCategories.clear(); |
369 | mCustomCategories = getDefaultList(); | 363 | mCustomCategories = getDefaultList(); |
370 | 364 | ||
371 | QStringList::Iterator it; | 365 | QStringList::Iterator it; |
372 | for (it = mCustomCategories.begin();it != mCustomCategories.end();++it ) { | 366 | for (it = mCustomCategories.begin();it != mCustomCategories.end();++it ) { |
373 | setCategoryColor(*it,mDefaultCategoryColor); | 367 | setCategoryColor(*it,mDefaultCategoryColor); |
374 | } | 368 | } |
375 | } | 369 | } |
376 | 370 | ||
377 | QStringList KOPrefs::getDefaultList() | 371 | QStringList KOPrefs::getDefaultList() |
378 | { | 372 | { |
379 | QStringList retval ; | 373 | QStringList retval ; |
380 | retval << i18n("Anniversary") << i18n("Appointment") << i18n("Birthday") << i18n("Business") << i18n("Business Travel") << i18n("Cinema") << i18n("Customer") | 374 | retval << i18n("Anniversary") << i18n("Appointment") << i18n("Birthday") << i18n("Business") << i18n("Business Travel") << i18n("Cinema") << i18n("Customer") |
381 | << i18n("Break")<< i18n("Breakfast")<< i18n("Competition")<< i18n("Dinner") | 375 | << i18n("Break")<< i18n("Breakfast")<< i18n("Competition")<< i18n("Dinner") |
382 | << i18n("Education")<< i18n("Family") << i18n("Favorites") << i18n("Festival")<< i18n("Fishing")<< i18n("Flight") << i18n("Gifts") | 376 | << i18n("Education")<< i18n("Family") << i18n("Favorites") << i18n("Festival")<< i18n("Fishing")<< i18n("Flight") << i18n("Gifts") |
383 | << i18n("Holiday") << i18n("Holiday Cards")<< i18n("Hot Contacts") << i18n("Hiking") << i18n("Hunting") << i18n("Key Customer") << i18n("Kids") | 377 | << i18n("Holiday") << i18n("Holiday Cards")<< i18n("Hot Contacts") << i18n("Hiking") << i18n("Hunting") << i18n("Key Customer") << i18n("Kids") |
384 | << i18n("Lunch") << i18n("Meeting") << i18n("Miscellaneous") << i18n("Partner")<< i18n("Party") << i18n("Personal") << i18n("Personal Travel") | 378 | << i18n("Lunch") << i18n("Meeting") << i18n("Miscellaneous") << i18n("Partner")<< i18n("Party") << i18n("Personal") << i18n("Personal Travel") |
385 | << i18n("PHB") << i18n("Phone Calls") << i18n("Projects") << i18n("Recurring") << i18n("School") << i18n("Shopping") | 379 | << i18n("PHB") << i18n("Phone Calls") << i18n("Projects") << i18n("Recurring") << i18n("School") << i18n("Shopping") |
386 | << i18n("Speach") << i18n("Special Occasion") << i18n("Sports") << i18n("Talk") << i18n("Travel") << i18n("TV")<< i18n("University") | 380 | << i18n("Speach") << i18n("Special Occasion") << i18n("Sports") << i18n("Talk") << i18n("Travel") << i18n("TV")<< i18n("University") |
387 | << i18n("Vacation") << i18n("VIP") << i18n("SyncEvent") ; | 381 | << i18n("Vacation") << i18n("VIP") << i18n("SyncEvent") ; |
388 | retval.sort(); | 382 | retval.sort(); |
389 | return retval; | 383 | return retval; |
390 | } | 384 | } |
391 | 385 | ||
392 | void KOPrefs::usrReadConfig() | 386 | void KOPrefs::usrReadConfig() |
393 | { | 387 | { |
394 | mPreferredLanguage = KPimGlobalPrefs::instance()->mPreferredLanguage; | 388 | mPreferredLanguage = KPimGlobalPrefs::instance()->mPreferredLanguage; |
395 | mLocaleDict = 0; | 389 | mLocaleDict = 0; |
396 | // pending LR fix translation | 390 | // pending LR fix translation |
397 | // qDebug("KOPrefs::usrReadConfig() fix translation "); | 391 | // qDebug("KOPrefs::usrReadConfig() fix translation "); |
398 | if ( mPreferredLanguage > 0 && mPreferredLanguage < 5 ) { | 392 | if ( mPreferredLanguage > 0 && mPreferredLanguage < 5 ) { |
399 | if ( mPreferredLanguage == 1 ) { | 393 | if ( mPreferredLanguage == 1 ) { |
400 | mLocaleDict = new QDict<QString>; | 394 | mLocaleDict = new QDict<QString>; |
401 | int i = 0; | 395 | int i = 0; |
402 | QString fw ( germanwords[i] [0]); | 396 | QString fw ( germanwords[i] [0]); |
403 | while ( !fw.isEmpty() ) { | 397 | while ( !fw.isEmpty() ) { |
404 | mLocaleDict->insert( fw, new QString (germanwords[i] [1] )); | 398 | mLocaleDict->insert( fw, new QString (germanwords[i] [1] )); |
405 | ++i; | 399 | ++i; |
406 | fw = germanwords[i] [0]; | 400 | fw = germanwords[i] [0]; |
407 | } | 401 | } |
408 | 402 | ||
409 | setLocaleDict( mLocaleDict ); | 403 | setLocaleDict( mLocaleDict ); |
410 | } else { | 404 | } else { |
411 | QString fileName ; | 405 | QString fileName ; |
412 | if ( mPreferredLanguage == 4 ) | 406 | if ( mPreferredLanguage == 4 ) |
413 | fileName = MainWindow::resourcePath()+"usertranslation.txt"; | 407 | fileName = MainWindow::resourcePath()+"usertranslation.txt"; |
414 | else if ( mPreferredLanguage == 2 ) | 408 | else if ( mPreferredLanguage == 2 ) |
415 | fileName = MainWindow::resourcePath()+"frenchtranslation.txt"; | 409 | fileName = MainWindow::resourcePath()+"frenchtranslation.txt"; |
416 | else if ( mPreferredLanguage == 3 ) | 410 | else if ( mPreferredLanguage == 3 ) |
417 | fileName = MainWindow::resourcePath()+"italiantranslation.txt"; | 411 | fileName = MainWindow::resourcePath()+"italiantranslation.txt"; |
418 | QFile file( fileName ); | 412 | QFile file( fileName ); |
419 | if (file.open( IO_ReadOnly ) ) { | 413 | if (file.open( IO_ReadOnly ) ) { |
420 | QTextStream ts( &file ); | 414 | QTextStream ts( &file ); |
421 | ts.setEncoding( QTextStream::Latin1 ); | 415 | ts.setEncoding( QTextStream::Latin1 ); |
422 | //ts.setCodec( QTextCodec::latin1 ); | 416 | //ts.setCodec( QTextCodec::latin1 ); |
423 | QString text = ts.read(); | 417 | QString text = ts.read(); |
424 | file.close(); | 418 | file.close(); |
425 | text.replace( QRegExp("\\\\n"), "\n" ); | 419 | text.replace( QRegExp("\\\\n"), "\n" ); |
426 | QString line; | 420 | QString line; |
427 | QString we; | 421 | QString we; |
428 | QString wt; | 422 | QString wt; |
429 | int br = 0; | 423 | int br = 0; |
430 | int nbr; | 424 | int nbr; |
431 | nbr = text.find ( "},", br ); | 425 | nbr = text.find ( "},", br ); |
432 | line = text.mid( br, nbr - br ); | 426 | line = text.mid( br, nbr - br ); |
433 | br = nbr+1; | 427 | br = nbr+1; |
434 | int se, ee, st, et; | 428 | int se, ee, st, et; |
435 | mLocaleDict = new QDict<QString>; | 429 | mLocaleDict = new QDict<QString>; |
436 | QString end = "{ \"\",\"\" }"; | 430 | QString end = "{ \"\",\"\" }"; |
437 | while ( (line != end) && (br > 1) ) { | 431 | while ( (line != end) && (br > 1) ) { |
438 | //qDebug("%d *%s* ", br, line.latin1()); | 432 | //qDebug("%d *%s* ", br, line.latin1()); |
439 | se = line.find("\"")+1; | 433 | se = line.find("\"")+1; |
440 | et = line.findRev("\"",-1); | 434 | et = line.findRev("\"",-1); |
441 | ee = line.find("\",\""); | 435 | ee = line.find("\",\""); |
442 | st = ee+3; | 436 | st = ee+3; |
443 | we = line.mid( se, ee-se ); | 437 | we = line.mid( se, ee-se ); |
444 | wt = line.mid( st, et-st ); | 438 | wt = line.mid( st, et-st ); |
445 | //qDebug("*%s* *%s* ", we.latin1(), wt.latin1()); | 439 | //qDebug("*%s* *%s* ", we.latin1(), wt.latin1()); |
446 | mLocaleDict->insert( we, new QString (wt) ); | 440 | mLocaleDict->insert( we, new QString (wt) ); |
447 | nbr = text.find ( "}", br ); | 441 | nbr = text.find ( "}", br ); |
448 | line = text.mid( br, nbr - br ); | 442 | line = text.mid( br, nbr - br ); |
449 | br = nbr+1; | 443 | br = nbr+1; |
450 | } | 444 | } |
451 | //qDebug("end *%s* ", end.latin1()); | 445 | //qDebug("end *%s* ", end.latin1()); |
452 | 446 | ||
453 | setLocaleDict( mLocaleDict ); | 447 | setLocaleDict( mLocaleDict ); |
454 | } else { | 448 | } else { |
455 | qDebug("KO: Cannot find translation file %s",fileName.latin1() ); | 449 | qDebug("KO: Cannot find translation file %s",fileName.latin1() ); |
456 | } | 450 | } |
457 | 451 | ||
458 | } | 452 | } |
459 | } | 453 | } |
460 | config()->setGroup("General"); | 454 | config()->setGroup("General"); |
461 | 455 | ||
462 | mCustomCategories = config()->readListEntry("Custom Categories"); | 456 | mCustomCategories = config()->readListEntry("Custom Categories"); |
463 | if ( KOPrefs::instance()->mLanguageChanged ) { | 457 | if ( KOPrefs::instance()->mLanguageChanged ) { |
464 | mLocationDefaults.clear(); | 458 | mLocationDefaults.clear(); |
465 | mEventSummaryUser.clear(); | 459 | mEventSummaryUser.clear(); |
466 | mTodoSummaryUser.clear(); | 460 | mTodoSummaryUser.clear(); |
467 | } | 461 | } |
468 | if (mLocationDefaults.isEmpty()) { | 462 | if (mLocationDefaults.isEmpty()) { |
469 | mLocationDefaults << i18n("Home") << i18n("Office") << i18n("Library") << i18n("School") << i18n("Doctor") << i18n("Beach") | 463 | mLocationDefaults << i18n("Home") << i18n("Office") << i18n("Library") << i18n("School") << i18n("Doctor") << i18n("Beach") |
470 | << i18n("University") << i18n("Restaurant") << i18n("Bar") << i18n("Conference room") << i18n("Cinema") << i18n("Lake") << i18n("Kindergarten") | 464 | << i18n("University") << i18n("Restaurant") << i18n("Bar") << i18n("Conference room") << i18n("Cinema") << i18n("Lake") << i18n("Kindergarten") |
471 | << i18n("Germany") << i18n("Sweden") << i18n("Forest") << i18n("Desert") << i18n("Kitchen") ; | 465 | << i18n("Germany") << i18n("Sweden") << i18n("Forest") << i18n("Desert") << i18n("Kitchen") ; |
472 | // << i18n("") << i18n("") << i18n("") << i18n("") << i18n("") << i18n("") << i18n("") << i18n("") | 466 | // << i18n("") << i18n("") << i18n("") << i18n("") << i18n("") << i18n("") << i18n("") << i18n("") |
473 | mLocationDefaults.sort(); | 467 | mLocationDefaults.sort(); |
474 | } | 468 | } |
475 | 469 | ||
476 | if (mEventSummaryUser.isEmpty()) { | 470 | if (mEventSummaryUser.isEmpty()) { |
477 | mEventSummaryUser = getDefaultList() ; | 471 | mEventSummaryUser = getDefaultList() ; |
478 | } | 472 | } |
479 | if (mTodoSummaryUser.isEmpty()) { | 473 | if (mTodoSummaryUser.isEmpty()) { |
480 | mTodoSummaryUser = getDefaultList() ; | 474 | mTodoSummaryUser = getDefaultList() ; |
481 | } | 475 | } |
482 | 476 | ||
483 | if (mCustomCategories.isEmpty()) setCategoryDefaults(); | 477 | if (mCustomCategories.isEmpty()) setCategoryDefaults(); |
484 | 478 | ||
485 | config()->setGroup("Personal Settings"); | 479 | config()->setGroup("Personal Settings"); |
486 | mName = config()->readEntry("user_name",""); | 480 | mName = config()->readEntry("user_name",""); |
487 | mEmail = config()->readEntry("user_email",""); | 481 | mEmail = config()->readEntry("user_email",""); |
488 | fillMailDefaults(); | 482 | fillMailDefaults(); |
489 | 483 | ||
490 | config()->setGroup("Category Colors"); | 484 | config()->setGroup("Category Colors"); |
491 | QStringList::Iterator it; | 485 | QStringList::Iterator it; |
492 | for (it = mCustomCategories.begin();it != mCustomCategories.end();++it ) { | 486 | for (it = mCustomCategories.begin();it != mCustomCategories.end();++it ) { |
493 | setCategoryColor(*it,config()->readColorEntry(*it,&mDefaultCategoryColor)); | 487 | setCategoryColor(*it,config()->readColorEntry(*it,&mDefaultCategoryColor)); |
494 | 488 | ||
495 | } | 489 | } |
496 | 490 | ||
497 | if (mTimeZoneId.isEmpty()) { | 491 | if (mTimeZoneId.isEmpty()) { |
498 | setTimeZoneIdDefault(); | 492 | setTimeZoneIdDefault(); |
499 | } | 493 | } |
500 | KPimPrefs::usrReadConfig(); | 494 | KPimPrefs::usrReadConfig(); |
501 | } | 495 | } |
502 | 496 | ||
503 | 497 | ||
504 | void KOPrefs::usrWriteConfig() | 498 | void KOPrefs::usrWriteConfig() |
505 | { | 499 | { |
506 | config()->setGroup("General"); | 500 | config()->setGroup("General"); |
507 | config()->writeEntry("Custom Categories",mCustomCategories); | 501 | config()->writeEntry("Custom Categories",mCustomCategories); |
508 | 502 | ||
509 | config()->setGroup("Personal Settings"); | 503 | config()->setGroup("Personal Settings"); |
510 | config()->writeEntry("user_name",mName); | 504 | config()->writeEntry("user_name",mName); |
511 | config()->writeEntry("user_email",mEmail); | 505 | config()->writeEntry("user_email",mEmail); |
512 | 506 | ||
513 | config()->setGroup("Category Colors"); | 507 | config()->setGroup("Category Colors"); |
514 | QDictIterator<QColor> it(mCategoryColors); | 508 | QDictIterator<QColor> it(mCategoryColors); |
515 | while (it.current()) { | 509 | while (it.current()) { |
516 | config()->writeEntry(it.currentKey(),*(it.current())); | 510 | config()->writeEntry(it.currentKey(),*(it.current())); |
517 | ++it; | 511 | ++it; |
518 | } | 512 | } |
519 | 513 | ||
520 | 514 | ||
521 | KPimPrefs::usrWriteConfig(); | 515 | KPimPrefs::usrWriteConfig(); |
522 | } | 516 | } |
523 | 517 | ||
524 | void KOPrefs::setCategoryColor(QString cat,const QColor & color) | 518 | void KOPrefs::setCategoryColor(QString cat,const QColor & color) |
525 | { | 519 | { |
526 | mCategoryColors.replace(cat,new QColor(color)); | 520 | mCategoryColors.replace(cat,new QColor(color)); |
527 | } | 521 | } |
528 | 522 | ||
529 | QColor *KOPrefs::categoryColor(QString cat) | 523 | QColor *KOPrefs::categoryColor(QString cat) |
530 | { | 524 | { |
531 | QColor *color = 0; | 525 | QColor *color = 0; |
532 | 526 | ||
533 | if (!cat.isEmpty()) color = mCategoryColors[cat]; | 527 | if (!cat.isEmpty()) color = mCategoryColors[cat]; |
534 | 528 | ||
535 | if (color) return color; | 529 | if (color) return color; |
536 | else return &mDefaultCategoryColor; | 530 | else return &mDefaultCategoryColor; |
537 | } | 531 | } |
538 | 532 | ||
539 | void KOPrefs::setFullName(const QString &name) | 533 | void KOPrefs::setFullName(const QString &name) |
540 | { | 534 | { |
541 | mName = name; | 535 | mName = name; |
542 | } | 536 | } |
543 | 537 | ||
544 | void KOPrefs::setEmail(const QString &email) | 538 | void KOPrefs::setEmail(const QString &email) |
545 | { | 539 | { |
546 | //qDebug(" KOPrefs::setEmai*********** %s",email.latin1() ); | 540 | //qDebug(" KOPrefs::setEmai*********** %s",email.latin1() ); |
547 | mEmail = email; | 541 | mEmail = email; |
548 | } | 542 | } |
549 | 543 | ||
550 | QString KOPrefs::fullName() | 544 | QString KOPrefs::fullName() |
551 | { | 545 | { |
552 | if (mEmailControlCenter) { | 546 | if (mEmailControlCenter) { |
553 | KEMailSettings settings; | 547 | KEMailSettings settings; |
554 | return settings.getSetting(KEMailSettings::RealName); | 548 | return settings.getSetting(KEMailSettings::RealName); |
555 | } else { | 549 | } else { |
556 | return mName; | 550 | return mName; |
557 | } | 551 | } |
558 | } | 552 | } |
559 | 553 | ||
560 | QString KOPrefs::email() | 554 | QString KOPrefs::email() |
561 | { | 555 | { |
562 | if (mEmailControlCenter) { | 556 | if (mEmailControlCenter) { |
563 | KEMailSettings settings; | 557 | KEMailSettings settings; |
564 | return settings.getSetting(KEMailSettings::EmailAddress); | 558 | return settings.getSetting(KEMailSettings::EmailAddress); |
565 | } else { | 559 | } else { |
566 | return mEmail; | 560 | return mEmail; |
567 | } | 561 | } |
568 | } | 562 | } |
569 | KConfig* KOPrefs::getConfig() | 563 | KConfig* KOPrefs::getConfig() |
570 | { | 564 | { |
571 | return config(); | 565 | return config(); |
572 | } | 566 | } |
diff --git a/korganizer/mainwindow.cpp b/korganizer/mainwindow.cpp index 06470b8..c3e9f75 100644 --- a/korganizer/mainwindow.cpp +++ b/korganizer/mainwindow.cpp | |||
@@ -449,1377 +449,1377 @@ void MainWindow::initActions() | |||
449 | 449 | ||
450 | QPopupMenu *viewMenu = new QPopupMenu( this ); | 450 | QPopupMenu *viewMenu = new QPopupMenu( this ); |
451 | QPopupMenu *actionMenu = new QPopupMenu( this ); | 451 | QPopupMenu *actionMenu = new QPopupMenu( this ); |
452 | QPopupMenu *importMenu = new QPopupMenu( this ); | 452 | QPopupMenu *importMenu = new QPopupMenu( this ); |
453 | selectFilterMenu = new QPopupMenu( this ); | 453 | selectFilterMenu = new QPopupMenu( this ); |
454 | selectFilterMenu->setCheckable( true ); | 454 | selectFilterMenu->setCheckable( true ); |
455 | syncMenu = new QPopupMenu( this ); | 455 | syncMenu = new QPopupMenu( this ); |
456 | configureAgendaMenu = new QPopupMenu( this ); | 456 | configureAgendaMenu = new QPopupMenu( this ); |
457 | configureToolBarMenu = new QPopupMenu( this ); | 457 | configureToolBarMenu = new QPopupMenu( this ); |
458 | QPopupMenu *helpMenu = new QPopupMenu( this ); | 458 | QPopupMenu *helpMenu = new QPopupMenu( this ); |
459 | if ( KOPrefs::instance()->mShowFullMenu ) { | 459 | if ( KOPrefs::instance()->mShowFullMenu ) { |
460 | QMenuBar *menuBar1; | 460 | QMenuBar *menuBar1; |
461 | menuBar1 = menuBar(); | 461 | menuBar1 = menuBar(); |
462 | menuBar1->insertItem( i18n("File"), importMenu ); | 462 | menuBar1->insertItem( i18n("File"), importMenu ); |
463 | menuBar1->insertItem( i18n("View"), viewMenu ); | 463 | menuBar1->insertItem( i18n("View"), viewMenu ); |
464 | menuBar1->insertItem( i18n("Actions"), actionMenu ); | 464 | menuBar1->insertItem( i18n("Actions"), actionMenu ); |
465 | menuBar1->insertItem( i18n("Synchronize"), syncMenu ); | 465 | menuBar1->insertItem( i18n("Synchronize"), syncMenu ); |
466 | menuBar1->insertItem( i18n("AgendaSize"),configureAgendaMenu ); | 466 | menuBar1->insertItem( i18n("AgendaSize"),configureAgendaMenu ); |
467 | //menuBar1->insertItem( i18n("Toolbar"),configureToolBarMenu ); | 467 | //menuBar1->insertItem( i18n("Toolbar"),configureToolBarMenu ); |
468 | menuBar1->insertItem( i18n("Filter"),selectFilterMenu ); | 468 | menuBar1->insertItem( i18n("Filter"),selectFilterMenu ); |
469 | menuBar1->insertItem( i18n("Help"), helpMenu ); | 469 | menuBar1->insertItem( i18n("Help"), helpMenu ); |
470 | } else { | 470 | } else { |
471 | QPEMenuBar *menuBar1; | 471 | QPEMenuBar *menuBar1; |
472 | menuBar1 = new QPEMenuBar( iconToolBar ); | 472 | menuBar1 = new QPEMenuBar( iconToolBar ); |
473 | QPopupMenu *menuBar = new QPopupMenu( this ); | 473 | QPopupMenu *menuBar = new QPopupMenu( this ); |
474 | menuBar1->insertItem( i18n("ME"), menuBar); | 474 | menuBar1->insertItem( i18n("ME"), menuBar); |
475 | menuBar->insertItem( i18n("File"), importMenu ); | 475 | menuBar->insertItem( i18n("File"), importMenu ); |
476 | menuBar->insertItem( i18n("View"), viewMenu ); | 476 | menuBar->insertItem( i18n("View"), viewMenu ); |
477 | menuBar->insertItem( i18n("Actions"), actionMenu ); | 477 | menuBar->insertItem( i18n("Actions"), actionMenu ); |
478 | menuBar->insertItem( i18n("Synchronize"), syncMenu ); | 478 | menuBar->insertItem( i18n("Synchronize"), syncMenu ); |
479 | menuBar->insertItem( i18n("AgendaSize"),configureAgendaMenu ); | 479 | menuBar->insertItem( i18n("AgendaSize"),configureAgendaMenu ); |
480 | menuBar->insertItem( i18n("Toolbar"),configureToolBarMenu ); | 480 | menuBar->insertItem( i18n("Toolbar"),configureToolBarMenu ); |
481 | menuBar->insertItem( i18n("Filter"),selectFilterMenu ); | 481 | menuBar->insertItem( i18n("Filter"),selectFilterMenu ); |
482 | menuBar->insertItem( i18n("Help"), helpMenu ); | 482 | menuBar->insertItem( i18n("Help"), helpMenu ); |
483 | //menuBar1->setMaximumWidth( menuBar1->sizeHint().width() ); | 483 | //menuBar1->setMaximumWidth( menuBar1->sizeHint().width() ); |
484 | menuBar1->setMaximumSize( menuBar1->sizeHint( )); | 484 | menuBar1->setMaximumSize( menuBar1->sizeHint( )); |
485 | } | 485 | } |
486 | connect ( selectFilterMenu, SIGNAL( activated ( int ) ), this, SLOT (selectFilter( int ) ) ); | 486 | connect ( selectFilterMenu, SIGNAL( activated ( int ) ), this, SLOT (selectFilter( int ) ) ); |
487 | connect ( selectFilterMenu, SIGNAL( aboutToShow () ), this, SLOT (fillFilterMenu() ) ); | 487 | connect ( selectFilterMenu, SIGNAL( aboutToShow () ), this, SLOT (fillFilterMenu() ) ); |
488 | 488 | ||
489 | // ****************** | 489 | // ****************** |
490 | QAction *action; | 490 | QAction *action; |
491 | QIconSet icon; | 491 | QIconSet icon; |
492 | // QPopupMenu *configureMenu= new QPopupMenu( menuBar ); | 492 | // QPopupMenu *configureMenu= new QPopupMenu( menuBar ); |
493 | configureToolBarMenu->setCheckable( true ); | 493 | configureToolBarMenu->setCheckable( true ); |
494 | 494 | ||
495 | QString pathString = ""; | 495 | QString pathString = ""; |
496 | if ( !p->mToolBarMiniIcons ) { | 496 | if ( !p->mToolBarMiniIcons ) { |
497 | if ( QApplication::desktop()->width() < 480 ) | 497 | if ( QApplication::desktop()->width() < 480 ) |
498 | pathString += "icons16/"; | 498 | pathString += "icons16/"; |
499 | } else | 499 | } else |
500 | pathString += "iconsmini/"; | 500 | pathString += "iconsmini/"; |
501 | configureAgendaMenu->setCheckable( true ); | 501 | configureAgendaMenu->setCheckable( true ); |
502 | configureAgendaMenu->insertItem(i18n("Toggle Allday"), 1 ); | 502 | configureAgendaMenu->insertItem(i18n("Toggle Allday"), 1 ); |
503 | configureAgendaMenu->insertSeparator(); | 503 | configureAgendaMenu->insertSeparator(); |
504 | configureAgendaMenu->insertItem(i18n("Tiny"), 4 ); | 504 | configureAgendaMenu->insertItem(i18n("Tiny"), 4 ); |
505 | configureAgendaMenu->insertItem(i18n("Small"), 6 ); | 505 | configureAgendaMenu->insertItem(i18n("Small"), 6 ); |
506 | configureAgendaMenu->insertItem(i18n("Medium"), 8 ); | 506 | configureAgendaMenu->insertItem(i18n("Medium"), 8 ); |
507 | configureAgendaMenu->insertItem(i18n("Normal"), 10 ); | 507 | configureAgendaMenu->insertItem(i18n("Normal"), 10 ); |
508 | configureAgendaMenu->insertItem(i18n("Large"), 12 ); | 508 | configureAgendaMenu->insertItem(i18n("Large"), 12 ); |
509 | configureAgendaMenu->insertItem(i18n("Big"), 14 ); | 509 | configureAgendaMenu->insertItem(i18n("Big"), 14 ); |
510 | configureAgendaMenu->insertItem(i18n("Bigger"), 16 ); | 510 | configureAgendaMenu->insertItem(i18n("Bigger"), 16 ); |
511 | configureAgendaMenu->insertItem(i18n("Biggest"), 18 ); | 511 | configureAgendaMenu->insertItem(i18n("Biggest"), 18 ); |
512 | //configureMenu->insertItem( "AgendaSize",configureAgendaMenu ); | 512 | //configureMenu->insertItem( "AgendaSize",configureAgendaMenu ); |
513 | 513 | ||
514 | icon = loadPixmap( pathString + "configure" ); | 514 | icon = loadPixmap( pathString + "configure" ); |
515 | action = new QAction( i18n("Configure"),icon, i18n("Configure..."), 0, this ); | 515 | action = new QAction( i18n("Configure"),icon, i18n("Configure..."), 0, this ); |
516 | action->addTo( actionMenu ); | 516 | action->addTo( actionMenu ); |
517 | connect( action, SIGNAL( activated() ), | 517 | connect( action, SIGNAL( activated() ), |
518 | mView, SLOT( edit_options() ) ); | 518 | mView, SLOT( edit_options() ) ); |
519 | actionMenu->insertSeparator(); | 519 | actionMenu->insertSeparator(); |
520 | icon = loadPixmap( pathString + "newevent" ); | 520 | icon = loadPixmap( pathString + "newevent" ); |
521 | configureToolBarMenu->insertItem(i18n("Stretched TB"), 5 ); | 521 | configureToolBarMenu->insertItem(i18n("Stretched TB"), 5 ); |
522 | configureToolBarMenu->insertSeparator(); | 522 | configureToolBarMenu->insertSeparator(); |
523 | configureToolBarMenu->insertItem(icon, i18n("New Event..."), 10 ); | 523 | configureToolBarMenu->insertItem(icon, i18n("New Event..."), 10 ); |
524 | QAction* ne_action = new QAction( i18n("New Event..."), icon, i18n("New Event..."), 0, this ); | 524 | QAction* ne_action = new QAction( i18n("New Event..."), icon, i18n("New Event..."), 0, this ); |
525 | ne_action->addTo( actionMenu ); | 525 | ne_action->addTo( actionMenu ); |
526 | connect( ne_action, SIGNAL( activated() ), | 526 | connect( ne_action, SIGNAL( activated() ), |
527 | mView, SLOT( newEvent() ) ); | 527 | mView, SLOT( newEvent() ) ); |
528 | icon = loadPixmap( pathString + "newtodo" ); | 528 | icon = loadPixmap( pathString + "newtodo" ); |
529 | configureToolBarMenu->insertItem(icon, i18n("New Todo..."), 20 ); | 529 | configureToolBarMenu->insertItem(icon, i18n("New Todo..."), 20 ); |
530 | QAction* nt_action = new QAction( i18n("New Todo..."), icon, i18n("New Todo..."), 0, this ); | 530 | QAction* nt_action = new QAction( i18n("New Todo..."), icon, i18n("New Todo..."), 0, this ); |
531 | nt_action->addTo( actionMenu ); | 531 | nt_action->addTo( actionMenu ); |
532 | connect( nt_action, SIGNAL( activated() ), | 532 | connect( nt_action, SIGNAL( activated() ), |
533 | mView, SLOT( newTodo() ) ); | 533 | mView, SLOT( newTodo() ) ); |
534 | icon = loadPixmap( pathString + "navi" ); | 534 | icon = loadPixmap( pathString + "navi" ); |
535 | action = new QAction( i18n("Toggle DateNavigator"), icon, i18n("Toggle DateNavigator"), 0, this ); | 535 | action = new QAction( i18n("Toggle DateNavigator"), icon, i18n("Toggle DateNavigator"), 0, this ); |
536 | action->addTo( viewMenu ); | 536 | action->addTo( viewMenu ); |
537 | connect( action, SIGNAL( activated() ), | 537 | connect( action, SIGNAL( activated() ), |
538 | mView, SLOT( toggleDateNavigatorWidget() ) ); | 538 | mView, SLOT( toggleDateNavigatorWidget() ) ); |
539 | icon = loadPixmap( pathString + "filter" ); | 539 | icon = loadPixmap( pathString + "filter" ); |
540 | action = new QAction( i18n("Toggle FilterView"), icon, i18n("Toggle FilterView"), 0, this ); | 540 | action = new QAction( i18n("Toggle FilterView"), icon, i18n("Toggle FilterView"), 0, this ); |
541 | action->addTo( viewMenu ); | 541 | action->addTo( viewMenu ); |
542 | connect( action, SIGNAL( activated() ), | 542 | connect( action, SIGNAL( activated() ), |
543 | mView, SLOT( toggleFilter() ) ); | 543 | mView, SLOT( toggleFilter() ) ); |
544 | 544 | ||
545 | 545 | ||
546 | viewMenu->insertSeparator(); | 546 | viewMenu->insertSeparator(); |
547 | icon = loadPixmap( pathString + "picker" ); | 547 | icon = loadPixmap( pathString + "picker" ); |
548 | action = new QAction( i18n("Date Picker"), icon, i18n("Date Picker"), 0, this ); | 548 | action = new QAction( i18n("Date Picker"), icon, i18n("Date Picker"), 0, this ); |
549 | action->addTo( viewMenu ); | 549 | action->addTo( viewMenu ); |
550 | connect( action, SIGNAL( activated() ), | 550 | connect( action, SIGNAL( activated() ), |
551 | mView, SLOT( showDatePicker() ) ); | 551 | mView, SLOT( showDatePicker() ) ); |
552 | action->addTo( iconToolBar ); | 552 | action->addTo( iconToolBar ); |
553 | viewMenu->insertSeparator(); | 553 | viewMenu->insertSeparator(); |
554 | icon = loadPixmap( pathString + "list" ); | 554 | icon = loadPixmap( pathString + "list" ); |
555 | configureToolBarMenu->insertItem(icon, i18n("List View"), 30 ); | 555 | configureToolBarMenu->insertItem(icon, i18n("List View"), 30 ); |
556 | QAction* showlist_action = new QAction( i18n("List View"), icon, i18n("List View"), 0, this ); | 556 | QAction* showlist_action = new QAction( i18n("List View"), icon, i18n("List View"), 0, this ); |
557 | showlist_action->addTo( viewMenu ); | 557 | showlist_action->addTo( viewMenu ); |
558 | connect( showlist_action, SIGNAL( activated() ), | 558 | connect( showlist_action, SIGNAL( activated() ), |
559 | mView->viewManager(), SLOT( showListView() ) ); | 559 | mView->viewManager(), SLOT( showListView() ) ); |
560 | 560 | ||
561 | 561 | ||
562 | icon = loadPixmap( pathString + "day" ); | 562 | icon = loadPixmap( pathString + "day" ); |
563 | configureToolBarMenu->insertItem(icon, i18n("Day View"), 40 ); | 563 | configureToolBarMenu->insertItem(icon, i18n("Day View"), 40 ); |
564 | QAction* day1_action = new QAction( i18n("Day View"), icon, i18n("Day View"), 0, this ); | 564 | QAction* day1_action = new QAction( i18n("Day View"), icon, i18n("Day View"), 0, this ); |
565 | day1_action->addTo( viewMenu ); | 565 | day1_action->addTo( viewMenu ); |
566 | // action->addTo( toolBar ); | 566 | // action->addTo( toolBar ); |
567 | connect( day1_action, SIGNAL( activated() ), | 567 | connect( day1_action, SIGNAL( activated() ), |
568 | mView->viewManager(), SLOT( showDayView() ) ); | 568 | mView->viewManager(), SLOT( showDayView() ) ); |
569 | 569 | ||
570 | icon = loadPixmap( pathString + "workweek" ); | 570 | icon = loadPixmap( pathString + "workweek" ); |
571 | configureToolBarMenu->insertItem(icon, i18n("Work Week"), 50 ); | 571 | configureToolBarMenu->insertItem(icon, i18n("Work Week"), 50 ); |
572 | QAction* day5_action = new QAction( i18n("Work Week"), icon, i18n("Work Week"), 0, this ); | 572 | QAction* day5_action = new QAction( i18n("Work Week"), icon, i18n("Work Week"), 0, this ); |
573 | day5_action->addTo( viewMenu ); | 573 | day5_action->addTo( viewMenu ); |
574 | connect( day5_action, SIGNAL( activated() ), | 574 | connect( day5_action, SIGNAL( activated() ), |
575 | mView->viewManager(), SLOT( showWorkWeekView() ) ); | 575 | mView->viewManager(), SLOT( showWorkWeekView() ) ); |
576 | 576 | ||
577 | icon = loadPixmap( pathString + "week" ); | 577 | icon = loadPixmap( pathString + "week" ); |
578 | configureToolBarMenu->insertItem(icon, i18n("Week"), 60 ); | 578 | configureToolBarMenu->insertItem(icon, i18n("Week"), 60 ); |
579 | QAction* day7_action = new QAction( i18n("Week"), icon, i18n("Week"), 0, this ); | 579 | QAction* day7_action = new QAction( i18n("Week"), icon, i18n("Week"), 0, this ); |
580 | day7_action->addTo( viewMenu ); | 580 | day7_action->addTo( viewMenu ); |
581 | connect( day7_action, SIGNAL( activated() ), | 581 | connect( day7_action, SIGNAL( activated() ), |
582 | mView->viewManager(), SLOT( showWeekView() ) ); | 582 | mView->viewManager(), SLOT( showWeekView() ) ); |
583 | 583 | ||
584 | icon = loadPixmap( pathString + "month" ); | 584 | icon = loadPixmap( pathString + "month" ); |
585 | configureToolBarMenu->insertItem(icon, i18n("Month"), 70 ); | 585 | configureToolBarMenu->insertItem(icon, i18n("Month"), 70 ); |
586 | QAction* month_action = new QAction( i18n("Month"), icon, i18n("Month"), 0, this ); | 586 | QAction* month_action = new QAction( i18n("Month"), icon, i18n("Month"), 0, this ); |
587 | month_action->addTo( viewMenu ); | 587 | month_action->addTo( viewMenu ); |
588 | connect( month_action, SIGNAL( activated() ), | 588 | connect( month_action, SIGNAL( activated() ), |
589 | mView->viewManager(), SLOT( showMonthView() ) ); | 589 | mView->viewManager(), SLOT( showMonthView() ) ); |
590 | 590 | ||
591 | icon = loadPixmap( pathString + "todo" ); | 591 | icon = loadPixmap( pathString + "todo" ); |
592 | configureToolBarMenu->insertItem(icon, i18n("Todo View"), 80 ); | 592 | configureToolBarMenu->insertItem(icon, i18n("Todo View"), 80 ); |
593 | QAction* todoview_action = new QAction( i18n("Todo View"), icon, i18n("Todo View"), 0, this ); | 593 | QAction* todoview_action = new QAction( i18n("Todo View"), icon, i18n("Todo View"), 0, this ); |
594 | todoview_action->addTo( viewMenu ); | 594 | todoview_action->addTo( viewMenu ); |
595 | connect( todoview_action, SIGNAL( activated() ), | 595 | connect( todoview_action, SIGNAL( activated() ), |
596 | mView->viewManager(), SLOT( showTodoView() ) ); | 596 | mView->viewManager(), SLOT( showTodoView() ) ); |
597 | 597 | ||
598 | icon = loadPixmap( pathString + "journal" ); | 598 | icon = loadPixmap( pathString + "journal" ); |
599 | configureToolBarMenu->insertItem(icon, i18n("Journal"), 90 ); | 599 | configureToolBarMenu->insertItem(icon, i18n("Journal"), 90 ); |
600 | QAction* viewjournal_action = new QAction( i18n("Journal"), icon, i18n("Journal"), 0, this ); | 600 | QAction* viewjournal_action = new QAction( i18n("Journal"), icon, i18n("Journal"), 0, this ); |
601 | viewjournal_action->addTo( viewMenu ); | 601 | viewjournal_action->addTo( viewMenu ); |
602 | connect( viewjournal_action, SIGNAL( activated() ), | 602 | connect( viewjournal_action, SIGNAL( activated() ), |
603 | mView->viewManager(), SLOT( showJournalView() ) ); | 603 | mView->viewManager(), SLOT( showJournalView() ) ); |
604 | 604 | ||
605 | icon = loadPixmap( pathString + "xdays" ); | 605 | icon = loadPixmap( pathString + "xdays" ); |
606 | configureToolBarMenu->insertItem(icon, i18n("Next days"), 100,4 ); | 606 | configureToolBarMenu->insertItem(icon, i18n("Next days"), 100,4 ); |
607 | QAction* xdays_action = new QAction( i18n("Next days"), icon, i18n("Next days"), 0, this ); | 607 | QAction* xdays_action = new QAction( i18n("Next days"), icon, i18n("Next days"), 0, this ); |
608 | xdays_action->addTo( viewMenu ); | 608 | xdays_action->addTo( viewMenu ); |
609 | connect( xdays_action, SIGNAL( activated() ), | 609 | connect( xdays_action, SIGNAL( activated() ), |
610 | mView->viewManager(), SLOT( showNextXView() ) ); | 610 | mView->viewManager(), SLOT( showNextXView() ) ); |
611 | 611 | ||
612 | icon = loadPixmap( pathString + "whatsnext" ); | 612 | icon = loadPixmap( pathString + "whatsnext" ); |
613 | configureToolBarMenu->insertItem(icon, i18n("What's Next"), 110, 4 ); | 613 | configureToolBarMenu->insertItem(icon, i18n("What's Next"), 110, 4 ); |
614 | QAction* whatsnext_action = new QAction( i18n("What's Next"), icon, i18n("What's Next"), 0, this ); | 614 | QAction* whatsnext_action = new QAction( i18n("What's Next"), icon, i18n("What's Next"), 0, this ); |
615 | whatsnext_action->addTo( viewMenu ); | 615 | whatsnext_action->addTo( viewMenu ); |
616 | connect( whatsnext_action, SIGNAL( activated() ), | 616 | connect( whatsnext_action, SIGNAL( activated() ), |
617 | mView->viewManager(), SLOT( showWhatsNextView() ) ); | 617 | mView->viewManager(), SLOT( showWhatsNextView() ) ); |
618 | 618 | ||
619 | #if 0 | 619 | #if 0 |
620 | action = new QAction( "view_timespan", "Time Span", 0, this ); | 620 | action = new QAction( "view_timespan", "Time Span", 0, this ); |
621 | action->addTo( viewMenu ); | 621 | action->addTo( viewMenu ); |
622 | connect( action, SIGNAL( activated() ), | 622 | connect( action, SIGNAL( activated() ), |
623 | mView->viewManager(), SLOT( showTimeSpanView() ) ); | 623 | mView->viewManager(), SLOT( showTimeSpanView() ) ); |
624 | #endif | 624 | #endif |
625 | 625 | ||
626 | mNewSubTodoAction = new QAction( "new_subtodo", i18n("New Sub-Todo..."), 0, | 626 | mNewSubTodoAction = new QAction( "new_subtodo", i18n("New Sub-Todo..."), 0, |
627 | this ); | 627 | this ); |
628 | mNewSubTodoAction->addTo( actionMenu ); | 628 | mNewSubTodoAction->addTo( actionMenu ); |
629 | connect( mNewSubTodoAction, SIGNAL( activated() ), | 629 | connect( mNewSubTodoAction, SIGNAL( activated() ), |
630 | mView, SLOT( newSubTodo() ) ); | 630 | mView, SLOT( newSubTodo() ) ); |
631 | 631 | ||
632 | actionMenu->insertSeparator(); | 632 | actionMenu->insertSeparator(); |
633 | 633 | ||
634 | mShowAction = new QAction( "show_incidence", i18n("Show..."), 0, this ); | 634 | mShowAction = new QAction( "show_incidence", i18n("Show..."), 0, this ); |
635 | mShowAction->addTo( actionMenu ); | 635 | mShowAction->addTo( actionMenu ); |
636 | connect( mShowAction, SIGNAL( activated() ), | 636 | connect( mShowAction, SIGNAL( activated() ), |
637 | mView, SLOT( showIncidence() ) ); | 637 | mView, SLOT( showIncidence() ) ); |
638 | 638 | ||
639 | mEditAction = new QAction( "edit_incidence", i18n("Edit..."), 0, this ); | 639 | mEditAction = new QAction( "edit_incidence", i18n("Edit..."), 0, this ); |
640 | mEditAction->addTo( actionMenu ); | 640 | mEditAction->addTo( actionMenu ); |
641 | connect( mEditAction, SIGNAL( activated() ), | 641 | connect( mEditAction, SIGNAL( activated() ), |
642 | mView, SLOT( editIncidence() ) ); | 642 | mView, SLOT( editIncidence() ) ); |
643 | 643 | ||
644 | mDeleteAction = new QAction( "delete_incidence", i18n("Delete..."), 0, this ); | 644 | mDeleteAction = new QAction( "delete_incidence", i18n("Delete..."), 0, this ); |
645 | mDeleteAction->addTo( actionMenu ); | 645 | mDeleteAction->addTo( actionMenu ); |
646 | connect( mDeleteAction, SIGNAL( activated() ), | 646 | connect( mDeleteAction, SIGNAL( activated() ), |
647 | mView, SLOT( deleteIncidence() ) ); | 647 | mView, SLOT( deleteIncidence() ) ); |
648 | 648 | ||
649 | 649 | ||
650 | mCloneAction = new QAction( "clone_incidence", i18n("Clone..."), 0, this ); | 650 | mCloneAction = new QAction( "clone_incidence", i18n("Clone..."), 0, this ); |
651 | mCloneAction->addTo( actionMenu ); | 651 | mCloneAction->addTo( actionMenu ); |
652 | connect( mCloneAction, SIGNAL( activated() ), | 652 | connect( mCloneAction, SIGNAL( activated() ), |
653 | mView, SLOT( cloneIncidence() ) ); | 653 | mView, SLOT( cloneIncidence() ) ); |
654 | mMoveAction = new QAction( "Move_incidence", i18n("Move..."), 0, this ); | 654 | mMoveAction = new QAction( "Move_incidence", i18n("Move..."), 0, this ); |
655 | mMoveAction->addTo( actionMenu ); | 655 | mMoveAction->addTo( actionMenu ); |
656 | connect( mMoveAction, SIGNAL( activated() ), | 656 | connect( mMoveAction, SIGNAL( activated() ), |
657 | mView, SLOT( moveIncidence() ) ); | 657 | mView, SLOT( moveIncidence() ) ); |
658 | mBeamAction = new QAction( "Beam_incidence", i18n("Beam..."), 0, this ); | 658 | mBeamAction = new QAction( "Beam_incidence", i18n("Beam..."), 0, this ); |
659 | mBeamAction->addTo( actionMenu ); | 659 | mBeamAction->addTo( actionMenu ); |
660 | connect( mBeamAction, SIGNAL( activated() ), | 660 | connect( mBeamAction, SIGNAL( activated() ), |
661 | mView, SLOT( beamIncidence() ) ); | 661 | mView, SLOT( beamIncidence() ) ); |
662 | mCancelAction = new QAction( "Cancel_incidence", i18n("Toggle Cancel"), 0, this ); | 662 | mCancelAction = new QAction( "Cancel_incidence", i18n("Toggle Cancel"), 0, this ); |
663 | mCancelAction->addTo( actionMenu ); | 663 | mCancelAction->addTo( actionMenu ); |
664 | connect( mCancelAction, SIGNAL( activated() ), | 664 | connect( mCancelAction, SIGNAL( activated() ), |
665 | mView, SLOT( toggleCancelIncidence() ) ); | 665 | mView, SLOT( toggleCancelIncidence() ) ); |
666 | 666 | ||
667 | actionMenu->insertSeparator(); | 667 | actionMenu->insertSeparator(); |
668 | 668 | ||
669 | action = new QAction( "purge_completed", i18n("Purge Completed"), 0, | 669 | action = new QAction( "purge_completed", i18n("Purge Completed"), 0, |
670 | this ); | 670 | this ); |
671 | action->addTo( actionMenu ); | 671 | action->addTo( actionMenu ); |
672 | connect( action, SIGNAL( activated() ), mView, SLOT( purgeCompleted() ) ); | 672 | connect( action, SIGNAL( activated() ), mView, SLOT( purgeCompleted() ) ); |
673 | 673 | ||
674 | icon = loadPixmap( pathString + "search" ); | 674 | icon = loadPixmap( pathString + "search" ); |
675 | QAction* search_action = new QAction( i18n("Search"), icon, i18n("Search..."), 0, this ); | 675 | QAction* search_action = new QAction( i18n("Search"), icon, i18n("Search..."), 0, this ); |
676 | configureToolBarMenu->insertItem(icon, i18n("Search"), 120 , 4); | 676 | configureToolBarMenu->insertItem(icon, i18n("Search"), 120 , 4); |
677 | search_action->addTo( actionMenu ); | 677 | search_action->addTo( actionMenu ); |
678 | connect( search_action, SIGNAL( activated() ), | 678 | connect( search_action, SIGNAL( activated() ), |
679 | mView->dialogManager(), SLOT( showSearchDialog() ) ); | 679 | mView->dialogManager(), SLOT( showSearchDialog() ) ); |
680 | 680 | ||
681 | icon = loadPixmap( pathString + "today" ); | 681 | icon = loadPixmap( pathString + "today" ); |
682 | configureToolBarMenu->insertItem(icon, i18n("Go to Today"), 130); | 682 | configureToolBarMenu->insertItem(icon, i18n("Go to Today"), 130); |
683 | QAction* today_action = new QAction( i18n("Go to Today"), icon, i18n("Go to Today"), 0, this ); | 683 | QAction* today_action = new QAction( i18n("Go to Today"), icon, i18n("Go to Today"), 0, this ); |
684 | today_action->addTo( actionMenu ); | 684 | today_action->addTo( actionMenu ); |
685 | connect( today_action, SIGNAL( activated() ), | 685 | connect( today_action, SIGNAL( activated() ), |
686 | mView, SLOT( goToday() ) ); | 686 | mView, SLOT( goToday() ) ); |
687 | 687 | ||
688 | if ( KOPrefs::instance()->mShowFullMenu ) { | 688 | if ( KOPrefs::instance()->mShowFullMenu ) { |
689 | actionMenu->insertSeparator(); | 689 | actionMenu->insertSeparator(); |
690 | actionMenu->insertItem( i18n("Configure Toolbar"),configureToolBarMenu ); | 690 | actionMenu->insertItem( i18n("Configure Toolbar"),configureToolBarMenu ); |
691 | 691 | ||
692 | } | 692 | } |
693 | // actionMenu->insertSeparator(); | 693 | // actionMenu->insertSeparator(); |
694 | action = new QAction( "import_qtopia", i18n("Import (*.ics/*.vcs) file"), 0, | 694 | action = new QAction( "import_qtopia", i18n("Import (*.ics/*.vcs) file"), 0, |
695 | this ); | 695 | this ); |
696 | action->addTo( importMenu ); | 696 | action->addTo( importMenu ); |
697 | connect( action, SIGNAL( activated() ), SLOT( importIcal() ) ); | 697 | connect( action, SIGNAL( activated() ), SLOT( importIcal() ) ); |
698 | action = new QAction( "import_quick", i18n("Import last file"), 0, | 698 | action = new QAction( "import_quick", i18n("Import last file"), 0, |
699 | this ); | 699 | this ); |
700 | action->addTo( importMenu ); | 700 | action->addTo( importMenu ); |
701 | connect( action, SIGNAL( activated() ), SLOT( quickImportIcal() ) ); | 701 | connect( action, SIGNAL( activated() ), SLOT( quickImportIcal() ) ); |
702 | importMenu->insertSeparator(); | 702 | importMenu->insertSeparator(); |
703 | action = new QAction( "import_bday", i18n("Import Birthdays (KA/Pi)"), 0, | 703 | action = new QAction( "import_bday", i18n("Import Birthdays (KA/Pi)"), 0, |
704 | this ); | 704 | this ); |
705 | action->addTo( importMenu ); | 705 | action->addTo( importMenu ); |
706 | connect( action, SIGNAL( activated() ), SLOT( importBday() ) ); | 706 | connect( action, SIGNAL( activated() ), SLOT( importBday() ) ); |
707 | #ifndef DESKTOP_VERSION | 707 | #ifndef DESKTOP_VERSION |
708 | importMenu->insertSeparator(); | 708 | importMenu->insertSeparator(); |
709 | action = new QAction( "import_qtopia", i18n("Import Opie/Qtopia Cal."), 0, | 709 | action = new QAction( "import_qtopia", i18n("Import Opie/Qtopia Cal."), 0, |
710 | this ); | 710 | this ); |
711 | action->addTo( importMenu ); | 711 | action->addTo( importMenu ); |
712 | connect( action, SIGNAL( activated() ), SLOT( importQtopia() ) ); | 712 | connect( action, SIGNAL( activated() ), SLOT( importQtopia() ) ); |
713 | #else | 713 | #else |
714 | #ifdef _WIN32_ | 714 | #ifdef _WIN32_ |
715 | importMenu->insertSeparator(); | 715 | importMenu->insertSeparator(); |
716 | action = new QAction( "import_ol", i18n("Import from OL"), 0, | 716 | action = new QAction( "import_ol", i18n("Import from OL"), 0, |
717 | this ); | 717 | this ); |
718 | action->addTo( importMenu ); | 718 | action->addTo( importMenu ); |
719 | connect( action, SIGNAL( activated() ), SLOT( importOL() ) ); | 719 | connect( action, SIGNAL( activated() ), SLOT( importOL() ) ); |
720 | #endif | 720 | #endif |
721 | #endif | 721 | #endif |
722 | 722 | ||
723 | importMenu->insertSeparator(); | 723 | importMenu->insertSeparator(); |
724 | action = new QAction( "load_cal", i18n("Load Calendar Backup"), 0, | 724 | action = new QAction( "load_cal", i18n("Load Calendar Backup"), 0, |
725 | this ); | 725 | this ); |
726 | action->addTo( importMenu ); | 726 | action->addTo( importMenu ); |
727 | connect( action, SIGNAL( activated() ), SLOT( loadCalendar() ) ); | 727 | connect( action, SIGNAL( activated() ), SLOT( loadCalendar() ) ); |
728 | 728 | ||
729 | action = new QAction( "save_cal", i18n("Save Calendar Backup"), 0, | 729 | action = new QAction( "save_cal", i18n("Save Calendar Backup"), 0, |
730 | this ); | 730 | this ); |
731 | action->addTo( importMenu ); | 731 | action->addTo( importMenu ); |
732 | connect( action, SIGNAL( activated() ), SLOT( saveCalendar() ) ); | 732 | connect( action, SIGNAL( activated() ), SLOT( saveCalendar() ) ); |
733 | 733 | ||
734 | importMenu->insertSeparator(); | 734 | importMenu->insertSeparator(); |
735 | action = new QAction( "import_qtopia", i18n("Export VCalendar"), 0, | 735 | action = new QAction( "import_qtopia", i18n("Export VCalendar"), 0, |
736 | this ); | 736 | this ); |
737 | action->addTo( importMenu ); connect( action, SIGNAL( activated() ), SLOT( exportVCalendar() ) ); | 737 | action->addTo( importMenu ); connect( action, SIGNAL( activated() ), SLOT( exportVCalendar() ) ); |
738 | 738 | ||
739 | 739 | ||
740 | //LR | 740 | //LR |
741 | QPopupMenu *ex2phone = new QPopupMenu( this ); | 741 | QPopupMenu *ex2phone = new QPopupMenu( this ); |
742 | ex2phone->insertItem(i18n("Complete calendar..."), 1 ); | 742 | ex2phone->insertItem(i18n("Complete calendar..."), 1 ); |
743 | ex2phone->insertItem(i18n("Filtered calendar..."), 2 ); | 743 | ex2phone->insertItem(i18n("Filtered calendar..."), 2 ); |
744 | connect( ex2phone, SIGNAL( activated(int) ), this, SLOT( exportToPhone( int)) ); | 744 | connect( ex2phone, SIGNAL( activated(int) ), this, SLOT( exportToPhone( int)) ); |
745 | importMenu->insertItem( i18n("Export to phone"), ex2phone ); | 745 | importMenu->insertItem( i18n("Export to phone"), ex2phone ); |
746 | 746 | ||
747 | importMenu->insertSeparator(); | 747 | importMenu->insertSeparator(); |
748 | action = new QAction( "manage cat", i18n("Manage new categories..."), 0, | 748 | action = new QAction( "manage cat", i18n("Manage new categories..."), 0, |
749 | this ); | 749 | this ); |
750 | action->addTo( importMenu ); | 750 | action->addTo( importMenu ); |
751 | connect( action, SIGNAL( activated() ), mView, SLOT( manageCategories() ) ); | 751 | connect( action, SIGNAL( activated() ), mView, SLOT( manageCategories() ) ); |
752 | #ifndef DESKTOP_VERSION | 752 | #ifndef DESKTOP_VERSION |
753 | importMenu->insertSeparator(); | 753 | importMenu->insertSeparator(); |
754 | action = new QAction( "beam all", i18n("Beam complete calendar..."), 0, | 754 | action = new QAction( "beam all", i18n("Beam complete calendar..."), 0, |
755 | this ); | 755 | this ); |
756 | action->addTo( importMenu ); | 756 | action->addTo( importMenu ); |
757 | connect( action, SIGNAL( activated() ), mView, SLOT( beamCalendar() ) ); | 757 | connect( action, SIGNAL( activated() ), mView, SLOT( beamCalendar() ) ); |
758 | 758 | ||
759 | action = new QAction( "beam all", i18n("Beam filtered calendar..."), 0, | 759 | action = new QAction( "beam all", i18n("Beam filtered calendar..."), 0, |
760 | this ); | 760 | this ); |
761 | action->addTo( importMenu ); | 761 | action->addTo( importMenu ); |
762 | connect( action, SIGNAL( activated() ), mView, SLOT( beamFilteredCalendar()) ); | 762 | connect( action, SIGNAL( activated() ), mView, SLOT( beamFilteredCalendar()) ); |
763 | #else | 763 | #else |
764 | importMenu->insertSeparator(); | 764 | importMenu->insertSeparator(); |
765 | icon = loadPixmap( pathString + "print" ); | 765 | icon = loadPixmap( pathString + "print" ); |
766 | action = new QAction( i18n("Print calendar..."),icon,i18n("Print calendar..."), 0, this ); | 766 | action = new QAction( i18n("Print calendar..."),icon,i18n("Print calendar..."), 0, this ); |
767 | action->addTo( importMenu ); | 767 | action->addTo( importMenu ); |
768 | connect( action, SIGNAL( activated() ), | 768 | connect( action, SIGNAL( activated() ), |
769 | this, SLOT( printCal() ) ); | 769 | this, SLOT( printCal() ) ); |
770 | 770 | ||
771 | icon = loadPixmap( pathString + "print" ); | 771 | icon = loadPixmap( pathString + "print" ); |
772 | action = new QAction( i18n("Print agenda selection..."),icon,i18n("Print agenda selection..."), 0, this ); | 772 | action = new QAction( i18n("Print agenda selection..."),icon,i18n("Print agenda selection..."), 0, this ); |
773 | action->addTo( importMenu ); | 773 | action->addTo( importMenu ); |
774 | connect( action, SIGNAL( activated() ), | 774 | connect( action, SIGNAL( activated() ), |
775 | this, SLOT( printSel() ) ); | 775 | this, SLOT( printSel() ) ); |
776 | #endif | 776 | #endif |
777 | importMenu->insertSeparator(); | 777 | importMenu->insertSeparator(); |
778 | action = new QAction( "beam all", i18n("Save"), 0, | 778 | action = new QAction( "beam all", i18n("Save"), 0, |
779 | this ); | 779 | this ); |
780 | action->addTo( importMenu ); | 780 | action->addTo( importMenu ); |
781 | connect( action, SIGNAL( activated() ), this, SLOT( save() ) ); | 781 | connect( action, SIGNAL( activated() ), this, SLOT( save() ) ); |
782 | action = new QAction( "beam all", i18n("Exit (+save)"), 0, | 782 | action = new QAction( "beam all", i18n("Exit (+save)"), 0, |
783 | this ); | 783 | this ); |
784 | action->addTo( importMenu ); | 784 | action->addTo( importMenu ); |
785 | connect( action, SIGNAL( activated() ), this, SLOT( close() ) ); | 785 | connect( action, SIGNAL( activated() ), this, SLOT( close() ) ); |
786 | 786 | ||
787 | //menuBar->insertItem( "Configure",configureMenu ); | 787 | //menuBar->insertItem( "Configure",configureMenu ); |
788 | //configureMenu->insertItem( "Toolbar",configureToolBarMenu ); | 788 | //configureMenu->insertItem( "Toolbar",configureToolBarMenu ); |
789 | icon = loadPixmap( "korganizer/korganizer" ); | 789 | icon = loadPixmap( "korganizer/korganizer" ); |
790 | action = new QAction( "Keys + Colors", i18n("Keys + Colors..."), 0, this ); | 790 | action = new QAction( "Keys + Colors", i18n("Keys + Colors..."), 0, this ); |
791 | action->addTo( helpMenu ); | 791 | action->addTo( helpMenu ); |
792 | connect( action, SIGNAL( activated() ), | 792 | connect( action, SIGNAL( activated() ), |
793 | SLOT( keyBindings() ) ); | 793 | SLOT( keyBindings() ) ); |
794 | action = new QAction( "featureHowto", i18n("Features + hints..."), 0,this ); | 794 | action = new QAction( "featureHowto", i18n("Features + hints..."), 0,this ); |
795 | action->addTo( helpMenu ); | 795 | action->addTo( helpMenu ); |
796 | connect( action, SIGNAL( activated() ), | 796 | connect( action, SIGNAL( activated() ), |
797 | SLOT( features() ) ); | 797 | SLOT( features() ) ); |
798 | action = new QAction( "Auto saving", i18n("Auto saving..."), 0, this ); | 798 | action = new QAction( "Auto saving", i18n("Auto saving..."), 0, this ); |
799 | action->addTo( helpMenu ); | 799 | action->addTo( helpMenu ); |
800 | connect( action, SIGNAL( activated() ), | 800 | connect( action, SIGNAL( activated() ), |
801 | SLOT( aboutAutoSaving() ) ); | 801 | SLOT( aboutAutoSaving() ) ); |
802 | action = new QAction( "Problemd", i18n("Known Problems..."), 0,this ); | 802 | action = new QAction( "Problemd", i18n("Known Problems..."), 0,this ); |
803 | action->addTo( helpMenu ); | 803 | action->addTo( helpMenu ); |
804 | connect( action, SIGNAL( activated() ), | 804 | connect( action, SIGNAL( activated() ), |
805 | SLOT( aboutKnownBugs() ) ); | 805 | SLOT( aboutKnownBugs() ) ); |
806 | action = new QAction( "Translate Howto", i18n("User translation..."), 0,this ); | 806 | action = new QAction( "Translate Howto", i18n("User translation..."), 0,this ); |
807 | action->addTo( helpMenu ); | 807 | action->addTo( helpMenu ); |
808 | connect( action, SIGNAL( activated() ), | 808 | connect( action, SIGNAL( activated() ), |
809 | SLOT( usertrans() ) ); | 809 | SLOT( usertrans() ) ); |
810 | action = new QAction( "Sync Howto", i18n("Sync HowTo..."), 0,this ); | 810 | action = new QAction( "Sync Howto", i18n("Sync HowTo..."), 0,this ); |
811 | action->addTo( helpMenu ); | 811 | action->addTo( helpMenu ); |
812 | connect( action, SIGNAL( activated() ), | 812 | connect( action, SIGNAL( activated() ), |
813 | SLOT( synchowto() ) ); | 813 | SLOT( synchowto() ) ); |
814 | action = new QAction( "Whats New", i18n("What's new?"), 0,this ); | 814 | action = new QAction( "Whats New", i18n("What's new?"), 0,this ); |
815 | action->addTo( helpMenu ); | 815 | action->addTo( helpMenu ); |
816 | connect( action, SIGNAL( activated() ), | 816 | connect( action, SIGNAL( activated() ), |
817 | SLOT( whatsNew() ) ); | 817 | SLOT( whatsNew() ) ); |
818 | action = new QAction( "Frequently asked questions", i18n("FAQ..."), 0,this ); | 818 | action = new QAction( "Frequently asked questions", i18n("FAQ..."), 0,this ); |
819 | action->addTo( helpMenu ); | 819 | action->addTo( helpMenu ); |
820 | connect( action, SIGNAL( activated() ), | 820 | connect( action, SIGNAL( activated() ), |
821 | SLOT( faq() ) ); | 821 | SLOT( faq() ) ); |
822 | 822 | ||
823 | 823 | ||
824 | action = new QAction( "about", i18n("About..."), 0, this ); | 824 | action = new QAction( "about", i18n("About..."), 0, this ); |
825 | action->addTo( helpMenu ); | 825 | action->addTo( helpMenu ); |
826 | connect( action, SIGNAL( activated() ), | 826 | connect( action, SIGNAL( activated() ), |
827 | SLOT( about() ) ); | 827 | SLOT( about() ) ); |
828 | action = new QAction( "licence", i18n("Licence..."), 0, this ); | 828 | action = new QAction( "licence", i18n("Licence..."), 0, this ); |
829 | action->addTo( helpMenu ); | 829 | action->addTo( helpMenu ); |
830 | connect( action, SIGNAL( activated() ), | 830 | connect( action, SIGNAL( activated() ), |
831 | SLOT( licence() ) ); | 831 | SLOT( licence() ) ); |
832 | //menuBar->insertSeparator(); | 832 | //menuBar->insertSeparator(); |
833 | 833 | ||
834 | // ****************************************************** | 834 | // ****************************************************** |
835 | // menubar icons | 835 | // menubar icons |
836 | 836 | ||
837 | 837 | ||
838 | iconToolBar->setHorizontalStretchable (true ); | 838 | iconToolBar->setHorizontalStretchable (true ); |
839 | //menuBar->insertItem( iconToolBar ); | 839 | //menuBar->insertItem( iconToolBar ); |
840 | //xdays_action | 840 | //xdays_action |
841 | if (p-> mShowIconNewEvent) | 841 | if (p-> mShowIconNewEvent) |
842 | ne_action->addTo( iconToolBar ); | 842 | ne_action->addTo( iconToolBar ); |
843 | if (p->mShowIconNewTodo ) | 843 | if (p->mShowIconNewTodo ) |
844 | nt_action->addTo( iconToolBar ); | 844 | nt_action->addTo( iconToolBar ); |
845 | if (p-> mShowIconSearch) | 845 | if (p-> mShowIconSearch) |
846 | search_action->addTo( iconToolBar ); | 846 | search_action->addTo( iconToolBar ); |
847 | if (p-> mShowIconNext) | 847 | if (p-> mShowIconNext) |
848 | whatsnext_action->addTo( iconToolBar ); | 848 | whatsnext_action->addTo( iconToolBar ); |
849 | if (p-> mShowIconNextDays) | 849 | if (p-> mShowIconNextDays) |
850 | xdays_action->addTo( iconToolBar ); | 850 | xdays_action->addTo( iconToolBar ); |
851 | if (p-> mShowIconList) | 851 | if (p-> mShowIconList) |
852 | showlist_action->addTo( iconToolBar ); | 852 | showlist_action->addTo( iconToolBar ); |
853 | if (p-> mShowIconDay1) | 853 | if (p-> mShowIconDay1) |
854 | day1_action->addTo( iconToolBar ); | 854 | day1_action->addTo( iconToolBar ); |
855 | if (p-> mShowIconDay5) | 855 | if (p-> mShowIconDay5) |
856 | day5_action->addTo( iconToolBar ); | 856 | day5_action->addTo( iconToolBar ); |
857 | if (p-> mShowIconDay7) | 857 | if (p-> mShowIconDay7) |
858 | day7_action->addTo( iconToolBar ); | 858 | day7_action->addTo( iconToolBar ); |
859 | if (p-> mShowIconMonth) | 859 | if (p-> mShowIconMonth) |
860 | month_action->addTo( iconToolBar ); | 860 | month_action->addTo( iconToolBar ); |
861 | if (p-> mShowIconTodoview) | 861 | if (p-> mShowIconTodoview) |
862 | todoview_action->addTo( iconToolBar ); | 862 | todoview_action->addTo( iconToolBar ); |
863 | if (p-> mShowIconJournal) | 863 | if (p-> mShowIconJournal) |
864 | viewjournal_action->addTo( iconToolBar ); | 864 | viewjournal_action->addTo( iconToolBar ); |
865 | icon = loadPixmap( pathString + "2leftarrowB" ); | 865 | icon = loadPixmap( pathString + "2leftarrowB" ); |
866 | configureToolBarMenu->insertItem(icon, i18n("Prev. month"), 200, 14); | 866 | configureToolBarMenu->insertItem(icon, i18n("Prev. month"), 200, 14); |
867 | if (p-> mShowIconBackFast) { | 867 | if (p-> mShowIconBackFast) { |
868 | action = new QAction( i18n("Prev. month"), icon, i18n("Prev. month"),0 , this ); | 868 | action = new QAction( i18n("Prev. month"), icon, i18n("Prev. month"),0 , this ); |
869 | connect( action, SIGNAL( activated() ), | 869 | connect( action, SIGNAL( activated() ), |
870 | mView, SLOT( goPreviousMonth() ) ); | 870 | mView, SLOT( goPreviousMonth() ) ); |
871 | action->addTo( iconToolBar ); | 871 | action->addTo( iconToolBar ); |
872 | } | 872 | } |
873 | icon = loadPixmap( pathString + "1leftarrowB" ); | 873 | icon = loadPixmap( pathString + "1leftarrowB" ); |
874 | configureToolBarMenu->insertItem(icon, i18n("Go backward"), 210,15); | 874 | configureToolBarMenu->insertItem(icon, i18n("Go backward"), 210,15); |
875 | if (p-> mShowIconBack) { | 875 | if (p-> mShowIconBack) { |
876 | action = new QAction( i18n("Go backward"), icon, i18n("Go backward"),0 , this ); | 876 | action = new QAction( i18n("Go backward"), icon, i18n("Go backward"),0 , this ); |
877 | connect( action, SIGNAL( activated() ), | 877 | connect( action, SIGNAL( activated() ), |
878 | mView, SLOT( goPrevious() ) ); | 878 | mView, SLOT( goPrevious() ) ); |
879 | action->addTo( iconToolBar ); | 879 | action->addTo( iconToolBar ); |
880 | } | 880 | } |
881 | if (p-> mShowIconToday) | 881 | if (p-> mShowIconToday) |
882 | today_action->addTo( iconToolBar ); | 882 | today_action->addTo( iconToolBar ); |
883 | icon = loadPixmap( pathString + "1rightarrowB" ); | 883 | icon = loadPixmap( pathString + "1rightarrowB" ); |
884 | configureToolBarMenu->insertItem(icon, i18n("Go forward"), 220); | 884 | configureToolBarMenu->insertItem(icon, i18n("Go forward"), 220); |
885 | if (p-> mShowIconForward) { | 885 | if (p-> mShowIconForward) { |
886 | action = new QAction( i18n("Go forward"), icon, i18n("Go forward"),0 , this ); | 886 | action = new QAction( i18n("Go forward"), icon, i18n("Go forward"),0 , this ); |
887 | connect( action, SIGNAL( activated() ), | 887 | connect( action, SIGNAL( activated() ), |
888 | mView, SLOT( goNext() ) ); | 888 | mView, SLOT( goNext() ) ); |
889 | action->addTo( iconToolBar ); | 889 | action->addTo( iconToolBar ); |
890 | } | 890 | } |
891 | icon = loadPixmap( pathString + "2rightarrowB" ); | 891 | icon = loadPixmap( pathString + "2rightarrowB" ); |
892 | configureToolBarMenu->insertItem(icon, i18n("Next month"), 230); | 892 | configureToolBarMenu->insertItem(icon, i18n("Next month"), 230); |
893 | if (p-> mShowIconForwardFast) { | 893 | if (p-> mShowIconForwardFast) { |
894 | action = new QAction( i18n("Next month"), icon, i18n("Next month"),0 , this ); | 894 | action = new QAction( i18n("Next month"), icon, i18n("Next month"),0 , this ); |
895 | connect( action, SIGNAL( activated() ), | 895 | connect( action, SIGNAL( activated() ), |
896 | mView, SLOT( goNextMonth() ) ); | 896 | mView, SLOT( goNextMonth() ) ); |
897 | action->addTo( iconToolBar ); | 897 | action->addTo( iconToolBar ); |
898 | } | 898 | } |
899 | 899 | ||
900 | 900 | ||
901 | configureToolBarMenu->insertItem(i18n("What's This?"), 300); | 901 | configureToolBarMenu->insertItem(i18n("What's This?"), 300); |
902 | 902 | ||
903 | if (p-> mShowIconNewEvent) | 903 | if (p-> mShowIconNewEvent) |
904 | configureToolBarMenu->setItemChecked( 10, true ); | 904 | configureToolBarMenu->setItemChecked( 10, true ); |
905 | if (p->mShowIconNewTodo ) | 905 | if (p->mShowIconNewTodo ) |
906 | configureToolBarMenu->setItemChecked( 20, true ); | 906 | configureToolBarMenu->setItemChecked( 20, true ); |
907 | if (p-> mShowIconSearch) | 907 | if (p-> mShowIconSearch) |
908 | configureToolBarMenu->setItemChecked( 120, true ); | 908 | configureToolBarMenu->setItemChecked( 120, true ); |
909 | if (p-> mShowIconList) | 909 | if (p-> mShowIconList) |
910 | configureToolBarMenu->setItemChecked( 30, true ); | 910 | configureToolBarMenu->setItemChecked( 30, true ); |
911 | if (p-> mShowIconDay1) | 911 | if (p-> mShowIconDay1) |
912 | configureToolBarMenu->setItemChecked( 40, true ); | 912 | configureToolBarMenu->setItemChecked( 40, true ); |
913 | if (p-> mShowIconDay5) | 913 | if (p-> mShowIconDay5) |
914 | configureToolBarMenu->setItemChecked( 50, true ); | 914 | configureToolBarMenu->setItemChecked( 50, true ); |
915 | if (p-> mShowIconDay7) | 915 | if (p-> mShowIconDay7) |
916 | configureToolBarMenu->setItemChecked( 60, true ); | 916 | configureToolBarMenu->setItemChecked( 60, true ); |
917 | if (p-> mShowIconMonth) | 917 | if (p-> mShowIconMonth) |
918 | configureToolBarMenu->setItemChecked( 70, true ); | 918 | configureToolBarMenu->setItemChecked( 70, true ); |
919 | if (p-> mShowIconTodoview) | 919 | if (p-> mShowIconTodoview) |
920 | configureToolBarMenu->setItemChecked( 80, true ); | 920 | configureToolBarMenu->setItemChecked( 80, true ); |
921 | if (p-> mShowIconBackFast) | 921 | if (p-> mShowIconBackFast) |
922 | configureToolBarMenu->setItemChecked( 200, true ); | 922 | configureToolBarMenu->setItemChecked( 200, true ); |
923 | if (p-> mShowIconBack) | 923 | if (p-> mShowIconBack) |
924 | configureToolBarMenu->setItemChecked( 210, true ); | 924 | configureToolBarMenu->setItemChecked( 210, true ); |
925 | if (p-> mShowIconToday) | 925 | if (p-> mShowIconToday) |
926 | configureToolBarMenu->setItemChecked( 130, true ); | 926 | configureToolBarMenu->setItemChecked( 130, true ); |
927 | if (p-> mShowIconForward) | 927 | if (p-> mShowIconForward) |
928 | configureToolBarMenu->setItemChecked( 220, true ); | 928 | configureToolBarMenu->setItemChecked( 220, true ); |
929 | if (p-> mShowIconForwardFast) | 929 | if (p-> mShowIconForwardFast) |
930 | configureToolBarMenu->setItemChecked( 230, true ); | 930 | configureToolBarMenu->setItemChecked( 230, true ); |
931 | if (p-> mShowIconNextDays) | 931 | if (p-> mShowIconNextDays) |
932 | configureToolBarMenu->setItemChecked( 100, true ); | 932 | configureToolBarMenu->setItemChecked( 100, true ); |
933 | if (p-> mShowIconNext) | 933 | if (p-> mShowIconNext) |
934 | configureToolBarMenu->setItemChecked( 110, true ); | 934 | configureToolBarMenu->setItemChecked( 110, true ); |
935 | if (p-> mShowIconJournal) | 935 | if (p-> mShowIconJournal) |
936 | configureToolBarMenu->setItemChecked( 90, true ); | 936 | configureToolBarMenu->setItemChecked( 90, true ); |
937 | if (p-> mShowIconWhatsThis) | 937 | if (p-> mShowIconWhatsThis) |
938 | configureToolBarMenu->setItemChecked( 300, true ); | 938 | configureToolBarMenu->setItemChecked( 300, true ); |
939 | 939 | ||
940 | QLabel* dummy = new QLabel( iconToolBar ); | 940 | QLabel* dummy = new QLabel( iconToolBar ); |
941 | dummy->setBackgroundColor( iconToolBar->backgroundColor() ); | 941 | dummy->setBackgroundColor( iconToolBar->backgroundColor() ); |
942 | if (!p-> mShowIconStretch) | 942 | if (!p-> mShowIconStretch) |
943 | iconToolBar->setStretchableWidget ( dummy ) ; | 943 | iconToolBar->setStretchableWidget ( dummy ) ; |
944 | else | 944 | else |
945 | configureToolBarMenu->setItemChecked( 5, true ); | 945 | configureToolBarMenu->setItemChecked( 5, true ); |
946 | if (p-> mShowIconWhatsThis) | 946 | if (p-> mShowIconWhatsThis) |
947 | QWhatsThis::whatsThisButton ( iconToolBar ); | 947 | QWhatsThis::whatsThisButton ( iconToolBar ); |
948 | connect( configureToolBarMenu, SIGNAL( activated( int ) ),this, SLOT(configureToolBar( int ) ) ); | 948 | connect( configureToolBarMenu, SIGNAL( activated( int ) ),this, SLOT(configureToolBar( int ) ) ); |
949 | configureAgenda( p->mHourSize ); | 949 | configureAgenda( p->mHourSize ); |
950 | connect( configureAgendaMenu, SIGNAL( activated( int ) ),this, SLOT(configureAgenda( int ) ) ); | 950 | connect( configureAgendaMenu, SIGNAL( activated( int ) ),this, SLOT(configureAgenda( int ) ) ); |
951 | } | 951 | } |
952 | 952 | ||
953 | void MainWindow::exportToPhone( int mode ) | 953 | void MainWindow::exportToPhone( int mode ) |
954 | { | 954 | { |
955 | 955 | ||
956 | //ex2phone->insertItem(i18n("Complete calendar..."), 1 ); | 956 | //ex2phone->insertItem(i18n("Complete calendar..."), 1 ); |
957 | //ex2phone->insertItem(i18n("Filtered calendar..."), 2 ); | 957 | //ex2phone->insertItem(i18n("Filtered calendar..."), 2 ); |
958 | KOex2phonePrefs ex2phone; | 958 | KOex2phonePrefs ex2phone; |
959 | 959 | ||
960 | ex2phone.mPhoneConnection->setText( KPimGlobalPrefs::instance()->mEx2PhoneConnection ); | 960 | ex2phone.mPhoneConnection->setText( KPimGlobalPrefs::instance()->mEx2PhoneConnection ); |
961 | ex2phone.mPhoneDevice->setText( KPimGlobalPrefs::instance()->mEx2PhoneDevice ); | 961 | ex2phone.mPhoneDevice->setText( KPimGlobalPrefs::instance()->mEx2PhoneDevice ); |
962 | ex2phone.mPhoneModel->setText( KPimGlobalPrefs::instance()->mEx2PhoneModel ); | 962 | ex2phone.mPhoneModel->setText( KPimGlobalPrefs::instance()->mEx2PhoneModel ); |
963 | if ( mode == 1 ) | 963 | if ( mode == 1 ) |
964 | ex2phone.setCaption(i18n("Export complete calendar")); | 964 | ex2phone.setCaption(i18n("Export complete calendar")); |
965 | if ( mode == 2 ) | 965 | if ( mode == 2 ) |
966 | ex2phone.setCaption(i18n("Export filtered calendar")); | 966 | ex2phone.setCaption(i18n("Export filtered calendar")); |
967 | 967 | ||
968 | if ( !ex2phone.exec() ) { | 968 | if ( !ex2phone.exec() ) { |
969 | return; | 969 | return; |
970 | } | 970 | } |
971 | KPimGlobalPrefs::instance()->mEx2PhoneConnection = ex2phone.mPhoneConnection->text(); | 971 | KPimGlobalPrefs::instance()->mEx2PhoneConnection = ex2phone.mPhoneConnection->text(); |
972 | KPimGlobalPrefs::instance()->mEx2PhoneDevice = ex2phone.mPhoneDevice->text(); | 972 | KPimGlobalPrefs::instance()->mEx2PhoneDevice = ex2phone.mPhoneDevice->text(); |
973 | KPimGlobalPrefs::instance()->mEx2PhoneModel = ex2phone.mPhoneModel->text(); | 973 | KPimGlobalPrefs::instance()->mEx2PhoneModel = ex2phone.mPhoneModel->text(); |
974 | 974 | ||
975 | int inFuture = 0; | 975 | int inFuture = 0; |
976 | if ( ex2phone.mWriteBackFuture->isChecked() ) | 976 | if ( ex2phone.mWriteBackFuture->isChecked() ) |
977 | inFuture = ex2phone.mWriteBackFutureWeeks->value(); | 977 | inFuture = ex2phone.mWriteBackFutureWeeks->value(); |
978 | QPtrList<Incidence> delSel; | 978 | QPtrList<Incidence> delSel; |
979 | if ( mode == 1 ) | 979 | if ( mode == 1 ) |
980 | delSel = mCalendar->rawIncidences(); | 980 | delSel = mCalendar->rawIncidences(); |
981 | if ( mode == 2 ) | 981 | if ( mode == 2 ) |
982 | delSel = mCalendar->incidences(); | 982 | delSel = mCalendar->incidences(); |
983 | CalendarLocal* cal = new CalendarLocal(); | 983 | CalendarLocal* cal = new CalendarLocal(); |
984 | cal->setLocalTime(); | 984 | cal->setLocalTime(); |
985 | Incidence *incidence = delSel.first(); | 985 | Incidence *incidence = delSel.first(); |
986 | QDateTime cur = QDateTime::currentDateTime().addDays( -7 ); | 986 | QDateTime cur = QDateTime::currentDateTime().addDays( -7 ); |
987 | QDateTime end = cur.addDays( ( inFuture +1 ) *7 ); | 987 | QDateTime end = cur.addDays( ( inFuture +1 ) *7 ); |
988 | while ( incidence ) { | 988 | while ( incidence ) { |
989 | if ( incidence->type() != "Journal" ) { | 989 | if ( incidence->type() != "Journal" ) { |
990 | bool add = true; | 990 | bool add = true; |
991 | if ( inFuture ) { | 991 | if ( inFuture ) { |
992 | QDateTime dt; | 992 | QDateTime dt; |
993 | if ( incidence->type() == "Todo" ) { | 993 | if ( incidence->type() == "Todo" ) { |
994 | Todo * t = (Todo*)incidence; | 994 | Todo * t = (Todo*)incidence; |
995 | if ( t->hasDueDate() ) | 995 | if ( t->hasDueDate() ) |
996 | dt = t->dtDue(); | 996 | dt = t->dtDue(); |
997 | else | 997 | else |
998 | dt = cur.addSecs( 62 ); | 998 | dt = cur.addSecs( 62 ); |
999 | } | 999 | } |
1000 | else { | 1000 | else { |
1001 | bool ok; | 1001 | bool ok; |
1002 | dt = incidence->getNextOccurence( cur, &ok ); | 1002 | dt = incidence->getNextOccurence( cur, &ok ); |
1003 | if ( !ok ) | 1003 | if ( !ok ) |
1004 | dt = cur.addSecs( -62 ); | 1004 | dt = cur.addSecs( -62 ); |
1005 | } | 1005 | } |
1006 | if ( dt < cur || dt > end ) { | 1006 | if ( dt < cur || dt > end ) { |
1007 | add = false; | 1007 | add = false; |
1008 | } | 1008 | } |
1009 | } | 1009 | } |
1010 | if ( add ) { | 1010 | if ( add ) { |
1011 | Incidence *in = incidence->clone(); | 1011 | Incidence *in = incidence->clone(); |
1012 | cal->addIncidence( in ); | 1012 | cal->addIncidence( in ); |
1013 | } | 1013 | } |
1014 | } | 1014 | } |
1015 | incidence = delSel.next(); | 1015 | incidence = delSel.next(); |
1016 | } | 1016 | } |
1017 | PhoneAccess::writeConfig( KPimGlobalPrefs::instance()->mEx2PhoneDevice, | 1017 | PhoneAccess::writeConfig( KPimGlobalPrefs::instance()->mEx2PhoneDevice, |
1018 | KPimGlobalPrefs::instance()->mEx2PhoneConnection, | 1018 | KPimGlobalPrefs::instance()->mEx2PhoneConnection, |
1019 | KPimGlobalPrefs::instance()->mEx2PhoneModel ); | 1019 | KPimGlobalPrefs::instance()->mEx2PhoneModel ); |
1020 | 1020 | ||
1021 | setCaption( i18n("Writing to phone...")); | 1021 | setCaption( i18n("Writing to phone...")); |
1022 | if ( PhoneFormat::writeToPhone( cal ) ) | 1022 | if ( PhoneFormat::writeToPhone( cal ) ) |
1023 | setCaption( i18n("Export to phone successful!")); | 1023 | setCaption( i18n("Export to phone successful!")); |
1024 | else | 1024 | else |
1025 | setCaption( i18n("Error exporting to phone!")); | 1025 | setCaption( i18n("Error exporting to phone!")); |
1026 | delete cal; | 1026 | delete cal; |
1027 | } | 1027 | } |
1028 | 1028 | ||
1029 | 1029 | ||
1030 | void MainWindow::setDefaultPreferences() | 1030 | void MainWindow::setDefaultPreferences() |
1031 | { | 1031 | { |
1032 | KOPrefs *p = KOPrefs::instance(); | 1032 | KOPrefs *p = KOPrefs::instance(); |
1033 | 1033 | ||
1034 | p->mCompactDialogs = true; | 1034 | p->mCompactDialogs = true; |
1035 | p->mConfirm = true; | 1035 | p->mConfirm = true; |
1036 | // p->mEnableQuickTodo = false; | 1036 | // p->mEnableQuickTodo = false; |
1037 | 1037 | ||
1038 | } | 1038 | } |
1039 | 1039 | ||
1040 | QString MainWindow::resourcePath() | 1040 | QString MainWindow::resourcePath() |
1041 | { | 1041 | { |
1042 | return KGlobal::iconLoader()->iconPath(); | 1042 | return KGlobal::iconLoader()->iconPath(); |
1043 | } | 1043 | } |
1044 | 1044 | ||
1045 | void MainWindow::displayText( QString text ,QString cap ) | 1045 | void MainWindow::displayText( QString text ,QString cap ) |
1046 | { | 1046 | { |
1047 | QDialog dia( this, "name", true ); ; | 1047 | QDialog dia( this, "name", true ); ; |
1048 | dia.setCaption( cap ); | 1048 | dia.setCaption( cap ); |
1049 | QVBoxLayout* lay = new QVBoxLayout( &dia ); | 1049 | QVBoxLayout* lay = new QVBoxLayout( &dia ); |
1050 | lay->setSpacing( 3 ); | 1050 | lay->setSpacing( 3 ); |
1051 | lay->setMargin( 3 ); | 1051 | lay->setMargin( 3 ); |
1052 | QTextBrowser tb ( &dia ); | 1052 | QTextBrowser tb ( &dia ); |
1053 | lay->addWidget( &tb ); | 1053 | lay->addWidget( &tb ); |
1054 | tb.setText( text ); | 1054 | tb.setText( text ); |
1055 | #ifdef DESKTOP_VERSION | 1055 | #ifdef DESKTOP_VERSION |
1056 | dia.resize( 640, 480); | 1056 | dia.resize( 640, 480); |
1057 | #else | 1057 | #else |
1058 | dia.showMaximized(); | 1058 | dia.showMaximized(); |
1059 | #endif | 1059 | #endif |
1060 | dia.exec(); | 1060 | dia.exec(); |
1061 | } | 1061 | } |
1062 | void MainWindow::displayFile( QString fn, QString cap ) | 1062 | void MainWindow::displayFile( QString fn, QString cap ) |
1063 | { | 1063 | { |
1064 | QString fileName = resourcePath() + fn; | 1064 | QString fileName = resourcePath() + fn; |
1065 | QString text; | 1065 | QString text; |
1066 | QFile file( fileName ); | 1066 | QFile file( fileName ); |
1067 | if (!file.open( IO_ReadOnly ) ) { | 1067 | if (!file.open( IO_ReadOnly ) ) { |
1068 | return ; | 1068 | return ; |
1069 | 1069 | ||
1070 | } | 1070 | } |
1071 | QTextStream ts( &file ); | 1071 | QTextStream ts( &file ); |
1072 | text = ts.read(); | 1072 | text = ts.read(); |
1073 | file.close(); | 1073 | file.close(); |
1074 | displayText( text, cap); | 1074 | displayText( text, cap); |
1075 | } | 1075 | } |
1076 | void MainWindow::features() | 1076 | void MainWindow::features() |
1077 | { | 1077 | { |
1078 | 1078 | ||
1079 | displayFile( "featuresKOPI.txt",i18n("KO/Pi Features and hints") ); | 1079 | displayFile( "featuresKOPI.txt",i18n("KO/Pi Features and hints") ); |
1080 | } | 1080 | } |
1081 | 1081 | ||
1082 | void MainWindow::usertrans() | 1082 | void MainWindow::usertrans() |
1083 | { | 1083 | { |
1084 | 1084 | ||
1085 | displayFile( "usertranslationHOWTO.txt",i18n("KO/Pi User translation HowTo") ); | 1085 | displayFile( "usertranslationHOWTO.txt",i18n("KO/Pi User translation HowTo") ); |
1086 | } | 1086 | } |
1087 | 1087 | ||
1088 | void MainWindow::synchowto() | 1088 | void MainWindow::synchowto() |
1089 | { | 1089 | { |
1090 | 1090 | ||
1091 | KApplication::showFile( "KDE-Pim/Pi Synchronization HowTo", "kdepim/SyncHowto.txt" ); | 1091 | KApplication::showFile( "KDE-Pim/Pi Synchronization HowTo", "kdepim/SyncHowto.txt" ); |
1092 | } | 1092 | } |
1093 | void MainWindow::faq() | 1093 | void MainWindow::faq() |
1094 | { | 1094 | { |
1095 | displayFile( "kopiFAQ.txt",i18n("KO/Pi FAQ") ); | 1095 | displayFile( "kopiFAQ.txt",i18n("KO/Pi FAQ") ); |
1096 | 1096 | ||
1097 | } | 1097 | } |
1098 | void MainWindow::whatsNew() | 1098 | void MainWindow::whatsNew() |
1099 | { | 1099 | { |
1100 | KApplication::showFile( "KDE-Pim/Pi Version Info", "kdepim/WhatsNew.txt" ); | 1100 | KApplication::showFile( "KDE-Pim/Pi Version Info", "kdepim/WhatsNew.txt" ); |
1101 | 1101 | ||
1102 | } | 1102 | } |
1103 | void MainWindow::licence() | 1103 | void MainWindow::licence() |
1104 | { | 1104 | { |
1105 | KApplication::showLicence(); | 1105 | KApplication::showLicence(); |
1106 | 1106 | ||
1107 | } | 1107 | } |
1108 | void MainWindow::about() | 1108 | void MainWindow::about() |
1109 | { | 1109 | { |
1110 | QString version; | 1110 | QString version; |
1111 | #include <../version> | 1111 | #include <../version> |
1112 | QMessageBox::about( this, i18n("About KOrganizer/Pi"), | 1112 | QMessageBox::about( this, i18n("About KOrganizer/Pi"), |
1113 | i18n("KOrganizer/Platform-independent\n") + | 1113 | i18n("KOrganizer/Platform-independent\n") + |
1114 | "(KO/Pi) " + version + " - " + | 1114 | "(KO/Pi) " + version + " - " + |
1115 | 1115 | ||
1116 | #ifdef DESKTOP_VERSION | 1116 | #ifdef DESKTOP_VERSION |
1117 | i18n("Desktop Edition\n") + | 1117 | i18n("Desktop Edition\n") + |
1118 | #else | 1118 | #else |
1119 | i18n("PDA-Edition\nfor: Zaurus 5x00 / 7x0 / 8x0\n") + | 1119 | i18n("PDA-Edition\nfor: Zaurus 5x00 / 7x0 / 8x0\n") + |
1120 | #endif | 1120 | #endif |
1121 | i18n("(c) 2004 Lutz Rogowski\nEmail:lutz@pi-sync.net\nKO/Pi is based on KOrganizer\n(c) 2002,2003 Cornelius Schumacher\nEmail: schumacher@kde.org\nKOrganizer/Pi is licensed\nunder the GPL.\nKO/Pi can be compiled for\nLinux, Zaurus-PDA and Windows\nwww.korganizer.org\nwww.pi-sync.net\n") ); | 1121 | i18n("(c) 2004 Lutz Rogowski\nEmail:lutz@pi-sync.net\nKO/Pi is based on KOrganizer\n(c) 2002,2003 Cornelius Schumacher\nEmail: schumacher@kde.org\nKOrganizer/Pi is licensed\nunder the GPL.\nKO/Pi can be compiled for\nLinux, Zaurus-PDA and Windows\nwww.korganizer.org\nwww.pi-sync.net\n") ); |
1122 | } | 1122 | } |
1123 | void MainWindow::keyBindings() | 1123 | void MainWindow::keyBindings() |
1124 | { | 1124 | { |
1125 | QString cap = i18n("Key bindings KOrganizer/Pi"); | 1125 | QString cap = i18n("Key bindings KOrganizer/Pi"); |
1126 | QString text = i18n("<p><h2>KO/Pi key shortcuts:</h2></p>\n") + | 1126 | QString text = i18n("<p><h2>KO/Pi key shortcuts:</h2></p>\n") + |
1127 | i18n("<p><b>H</b>: This help dialog | <b>S</b>: Search dialog</p>\n")+ | 1127 | i18n("<p><b>H</b>: This help dialog | <b>S</b>: Search dialog</p>\n")+ |
1128 | i18n("<p><b>I</b>: Show info for selected event/todo</p>\n") + | 1128 | i18n("<p><b>I</b>: Show info for selected event/todo</p>\n") + |
1129 | i18n("<p><b>Space</b>: Toggle fullscreen | <b>P</b>: Date picker</p>\n")+ | 1129 | i18n("<p><b>Space</b>: Toggle fullscreen | <b>P</b>: Date picker</p>\n")+ |
1130 | i18n("<p><b>F</b>: Toggle filterview |<b>F+ctrl</b>: Edit filter </p>\n")+ | 1130 | i18n("<p><b>F</b>: Toggle filterview |<b>F+ctrl</b>: Edit filter </p>\n")+ |
1131 | i18n("<p><b>O</b>: Filter On/Off | <b>J</b>: Journal view</p>\n")+ | 1131 | i18n("<p><b>O</b>: Filter On/Off | <b>J</b>: Journal view</p>\n")+ |
1132 | i18n("<p><b>1-0</b> (+<b>ctrl</b>): Select filter 1-10 (11-20)</p>\n")+ | 1132 | i18n("<p><b>1-0</b> (+<b>ctrl</b>): Select filter 1-10 (11-20)</p>\n")+ |
1133 | i18n("<p><b>N</b>: Next days view| <b>W</b>: What's next view\n ")+ | 1133 | i18n("<p><b>N</b>: Next days view| <b>W</b>: What's next view\n ")+ |
1134 | i18n("<p><b>V</b>: Todo view | <b>L</b>: Event list view</p>\n")+ | 1134 | i18n("<p><b>V</b>: Todo view | <b>L</b>: Event list view</p>\n")+ |
1135 | i18n("<p><b>Z,Y</b>: Work week view | <b>U</b>: Week view</p>\n")+ | 1135 | i18n("<p><b>Z,Y</b>: Work week view | <b>U</b>: Week view</p>\n")+ |
1136 | i18n("<p><b>D</b>: One day view | <b>M</b>: Month view</p>\n")+ | 1136 | i18n("<p><b>D</b>: One day view | <b>M</b>: Month view</p>\n")+ |
1137 | i18n("<p><b>E</b>: Edit selected item |<b> E+ctrl</b>: New Event</p>\n")+ | 1137 | i18n("<p><b>E</b>: Edit selected item |<b> E+ctrl</b>: New Event</p>\n")+ |
1138 | i18n("<p><b>T</b>: Goto today | <b>T+ctrl</b>: New Todo</p>\n")+ | 1138 | i18n("<p><b>T</b>: Goto today | <b>T+ctrl</b>: New Todo</p>\n")+ |
1139 | i18n("<p><b>S+ctrl</b>: Add sub-todo | <b>X</b>: Toggle datenavigator</p>\n")+ | 1139 | i18n("<p><b>S+ctrl</b>: Add sub-todo | <b>X</b>: Toggle datenavigator</p>\n")+ |
1140 | i18n("<p><b>+,-</b> : Zoom in/out agenda | <b>A</b>: Toggle allday agenda height</p>\n")+ | 1140 | i18n("<p><b>+,-</b> : Zoom in/out agenda | <b>A</b>: Toggle allday agenda height</p>\n")+ |
1141 | i18n("<p><b>C</b>: Show current time in agenda view</p>\n")+ | 1141 | i18n("<p><b>C</b>: Show current time in agenda view</p>\n")+ |
1142 | i18n("<p><b>B</b>: Edit description (details) of selected item</p>\n")+ | 1142 | i18n("<p><b>B</b>: Edit description (details) of selected item</p>\n")+ |
1143 | i18n("<p><b>right</b>: Next week | <b>right+ctrl</b>: Next month</p>\n")+ | 1143 | i18n("<p><b>right</b>: Next week | <b>right+ctrl</b>: Next month</p>\n")+ |
1144 | i18n("<p><b>left</b>: Prev. week | <b>left+ctrl</b>: Prev. month</p>\n")+ | 1144 | i18n("<p><b>left</b>: Prev. week | <b>left+ctrl</b>: Prev. month</p>\n")+ |
1145 | i18n("<p><b>del,backspace</b>: Delete selected item</p>\n")+ | 1145 | i18n("<p><b>del,backspace</b>: Delete selected item</p>\n")+ |
1146 | i18n("<p><h3>In agenda view:</h3></p>\n") + | 1146 | i18n("<p><h3>In agenda view:</h3></p>\n") + |
1147 | i18n("<p><b>up/down</b>: Scroll agenda view</p>\n")+ | 1147 | i18n("<p><b>up/down</b>: Scroll agenda view</p>\n")+ |
1148 | i18n("<p><b>ctrl+up/down</b>: Scroll small todo view</p>\n")+ | 1148 | i18n("<p><b>ctrl+up/down</b>: Scroll small todo view</p>\n")+ |
1149 | i18n("<p><h3>In todo view:</h3></p>\n") + | 1149 | i18n("<p><h3>In todo view:</h3></p>\n") + |
1150 | i18n("<p><b>shift+U</b>: <b>U</b>nparent todo (make root todo)</p>\n")+ | 1150 | i18n("<p><b>shift+U</b>: <b>U</b>nparent todo (make root todo)</p>\n")+ |
1151 | i18n("<p><b>shift+S</b>: Make <b>S</b>ubtodo (reparent todo)</p>\n")+ | 1151 | i18n("<p><b>shift+S</b>: Make <b>S</b>ubtodo (reparent todo)</p>\n")+ |
1152 | i18n("<p><b>shift+P</b>: Make new <b>P</b>arent for todo selected with shift+S</p>\n")+ | 1152 | i18n("<p><b>shift+P</b>: Make new <b>P</b>arent for todo selected with shift+S</p>\n")+ |
1153 | i18n("<p><b>Q</b>: Toggle quick todo line edit.</p>\n")+ | 1153 | i18n("<p><b>Q</b>: Toggle quick todo line edit.</p>\n")+ |
1154 | i18n("<p><b>I</b>: Show info of current item+one step down.</p>\n")+ | 1154 | i18n("<p><b>I</b>: Show info of current item+one step down.</p>\n")+ |
1155 | i18n("<p><b>return</b>: Mark item as completed+one step down.</p>\n")+ | 1155 | i18n("<p><b>return</b>: Mark item as completed+one step down.</p>\n")+ |
1156 | i18n("<p><b>return+shift</b>: Mark item as not completed+one step down</p>\n")+ | 1156 | i18n("<p><b>return+shift</b>: Mark item as not completed+one step down</p>\n")+ |
1157 | i18n("<p><h3>In list view:</h3></p>\n") + | 1157 | i18n("<p><h3>In list view:</h3></p>\n") + |
1158 | i18n("<p><b>I</b>: Show info of current item+one step down.</p>\n")+ | 1158 | i18n("<p><b>I</b>: Show info of current item+one step down.</p>\n")+ |
1159 | i18n("<p><b>return</b>: Select item+one step down</p>\n")+ | 1159 | i18n("<p><b>return</b>: Select item+one step down</p>\n")+ |
1160 | i18n("<p><b>return+shift</b>: Deselect item+one step down</p>\n")+ | 1160 | i18n("<p><b>return+shift</b>: Deselect item+one step down</p>\n")+ |
1161 | i18n("<p><b>up/down</b>: Next/prev item</p>\n")+ | 1161 | i18n("<p><b>up/down</b>: Next/prev item</p>\n")+ |
1162 | i18n("<p><b>ctrl+up/down</b>: Goto up/down by 20% of items</p>\n")+ | 1162 | i18n("<p><b>ctrl+up/down</b>: Goto up/down by 20% of items</p>\n")+ |
1163 | i18n("<p><b>shift+up/down</b>: Goto first/last item</p>\n")+ | 1163 | i18n("<p><b>shift+up/down</b>: Goto first/last item</p>\n")+ |
1164 | i18n("<p><h3>In event/todo viewer:</h3></p>\n") + | 1164 | i18n("<p><h3>In event/todo viewer:</h3></p>\n") + |
1165 | i18n("<p><b>I,C</b>: Close dialog.</p>\n")+ | 1165 | i18n("<p><b>I,C</b>: Close dialog.</p>\n")+ |
1166 | i18n("<p><b>A</b>: Show agenda view.</p>\n")+ | 1166 | i18n("<p><b>A</b>: Show agenda view.</p>\n")+ |
1167 | i18n("<p><b>E</b>: Edit item</p>\n") + | 1167 | i18n("<p><b>E</b>: Edit item</p>\n") + |
1168 | i18n("<p><h2>KO/Pi icon colors:</h2></p>\n") + | 1168 | i18n("<p><h2>KO/Pi icon colors:</h2></p>\n") + |
1169 | i18n("<p><b>(for square icons in agenda and month view)</b></p>\n") + | 1169 | i18n("<p><b>(for square icons in agenda and month view)</b></p>\n") + |
1170 | i18n("<p><b>Cross</b>: Item cancelled.([c] in Whats'Next view)</p>\n")+ | 1170 | i18n("<p><b>Cross</b>: Item cancelled.([c] in Whats'Next view)</p>\n")+ |
1171 | i18n("<p><b>Red</b>: Alarm set.([a] in Whats'Next view)</p>\n")+ | 1171 | i18n("<p><b>Red</b>: Alarm set.([a] in Whats'Next view)</p>\n")+ |
1172 | i18n("<p><b>Blue</b>: Recurrent event.([r] in Whats'Next view)</p>\n")+ | 1172 | i18n("<p><b>Blue</b>: Recurrent event.([r] in Whats'Next view)</p>\n")+ |
1173 | i18n("<p><b>Dark green</b>: Information(description) available.([i] in WN view)</p>\n")+ | 1173 | i18n("<p><b>Dark green</b>: Information(description) available.([i] in WN view)</p>\n")+ |
1174 | i18n("<p><b>Black</b>: Event/todo with attendees. You are the organizer!</p>\n")+ | 1174 | i18n("<p><b>Black</b>: Event/todo with attendees. You are the organizer!</p>\n")+ |
1175 | i18n("<p><b>Dark yellow</b>: Event/todo with attendees.</p>\n") + | 1175 | i18n("<p><b>Dark yellow</b>: Event/todo with attendees.</p>\n") + |
1176 | i18n("<p><b>White</b>: Item readonly</p>\n"); | 1176 | i18n("<p><b>White</b>: Item readonly</p>\n"); |
1177 | displayText( text, cap); | 1177 | displayText( text, cap); |
1178 | 1178 | ||
1179 | } | 1179 | } |
1180 | void MainWindow::aboutAutoSaving() | 1180 | void MainWindow::aboutAutoSaving() |
1181 | { | 1181 | { |
1182 | QMessageBox* msg; | 1182 | QMessageBox* msg; |
1183 | msg = new QMessageBox( i18n("Auto Saving in KOrganizer/Pi"), | 1183 | msg = new QMessageBox( i18n("Auto Saving in KOrganizer/Pi"), |
1184 | i18n("After changing something, the data is\nautomatically saved to the file\n~/kdepim/apps/korganizer/mycalendar.ics\nafter (configureable) 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"), QMessageBox::NoIcon, | 1184 | i18n("After changing something, the data is\nautomatically saved to the file\n~/kdepim/apps/korganizer/mycalendar.ics\nafter (configureable) 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"), QMessageBox::NoIcon, |
1185 | QMessageBox::Ok, | 1185 | QMessageBox::Ok, |
1186 | QMessageBox::NoButton, | 1186 | QMessageBox::NoButton, |
1187 | QMessageBox::NoButton); | 1187 | QMessageBox::NoButton); |
1188 | msg->exec(); | 1188 | msg->exec(); |
1189 | delete msg; | 1189 | delete msg; |
1190 | 1190 | ||
1191 | 1191 | ||
1192 | } | 1192 | } |
1193 | void MainWindow::aboutKnownBugs() | 1193 | void MainWindow::aboutKnownBugs() |
1194 | { | 1194 | { |
1195 | QMessageBox* msg; | 1195 | QMessageBox* msg; |
1196 | msg = new QMessageBox( i18n("Known Problems in KOrganizer/Pi"), | 1196 | msg = new QMessageBox( i18n("Known Problems in KOrganizer/Pi"), |
1197 | 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")+ | 1197 | 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")+ |
1198 | i18n("2) Audio alarm daemon\nfor Zaurus is available!\nas an additional small application\n")+ | 1198 | i18n("2) Audio alarm daemon\nfor Zaurus is available!\nas an additional small application\n")+ |
1199 | i18n("\nPlease report unexpected behaviour to\nlutz@pi-sync.net\n") + | 1199 | i18n("\nPlease report unexpected behaviour to\nlutz@pi-sync.net\n") + |
1200 | i18n("\nor report them in the bugtracker on\n") + | 1200 | i18n("\nor report them in the bugtracker on\n") + |
1201 | i18n("\nhttp://sourceforge.net/projects/kdepimpi\n"), | 1201 | i18n("\nhttp://sourceforge.net/projects/kdepimpi\n"), |
1202 | QMessageBox::NoIcon, | 1202 | QMessageBox::NoIcon, |
1203 | QMessageBox::Ok, | 1203 | QMessageBox::Ok, |
1204 | QMessageBox::NoButton, | 1204 | QMessageBox::NoButton, |
1205 | QMessageBox::NoButton); | 1205 | QMessageBox::NoButton); |
1206 | msg->exec(); | 1206 | msg->exec(); |
1207 | delete msg; | 1207 | delete msg; |
1208 | 1208 | ||
1209 | } | 1209 | } |
1210 | 1210 | ||
1211 | QString MainWindow::defaultFileName() | 1211 | QString MainWindow::defaultFileName() |
1212 | { | 1212 | { |
1213 | return locateLocal( "data", "korganizer/mycalendar.ics" ); | 1213 | return locateLocal( "data", "korganizer/mycalendar.ics" ); |
1214 | } | 1214 | } |
1215 | QString MainWindow::syncFileName() | 1215 | QString MainWindow::syncFileName() |
1216 | { | 1216 | { |
1217 | #ifdef _WIN32_ | 1217 | #ifdef DESKTOP_VERSION |
1218 | return locateLocal( "tmp", "synccalendar.ics" ); | 1218 | return locateLocal( "tmp", "synccalendar.ics" ); |
1219 | #else | 1219 | #else |
1220 | return QString( "/tmp/kopitempfile.ics" ); | 1220 | return QString( "/tmp/synccalendar.ics" ); |
1221 | #endif | 1221 | #endif |
1222 | } | 1222 | } |
1223 | 1223 | ||
1224 | void MainWindow::processIncidenceSelection( Incidence *incidence ) | 1224 | void MainWindow::processIncidenceSelection( Incidence *incidence ) |
1225 | { | 1225 | { |
1226 | if ( !incidence ) { | 1226 | if ( !incidence ) { |
1227 | enableIncidenceActions( false ); | 1227 | enableIncidenceActions( false ); |
1228 | 1228 | ||
1229 | mNewSubTodoAction->setEnabled( false ); | 1229 | mNewSubTodoAction->setEnabled( false ); |
1230 | setCaptionToDates(); | 1230 | setCaptionToDates(); |
1231 | return; | 1231 | return; |
1232 | 1232 | ||
1233 | } | 1233 | } |
1234 | 1234 | ||
1235 | //KGlobal::locale()->formatDateTime(nextA, true); | 1235 | //KGlobal::locale()->formatDateTime(nextA, true); |
1236 | QString startString = ""; | 1236 | QString startString = ""; |
1237 | if ( incidence->type() != "Todo" ) { | 1237 | if ( incidence->type() != "Todo" ) { |
1238 | if ( incidence->dtStart().date() < incidence->dtEnd().date() ) { | 1238 | if ( incidence->dtStart().date() < incidence->dtEnd().date() ) { |
1239 | if ( incidence->doesFloat() ) { | 1239 | if ( incidence->doesFloat() ) { |
1240 | startString += ": "+incidence->dtStartDateStr( true ); | 1240 | startString += ": "+incidence->dtStartDateStr( true ); |
1241 | startString += " --- "+((Event*)incidence)->dtEndDateStr( true ); | 1241 | startString += " --- "+((Event*)incidence)->dtEndDateStr( true ); |
1242 | 1242 | ||
1243 | } else { | 1243 | } else { |
1244 | startString = ": "+incidence->dtStartStr(true); | 1244 | startString = ": "+incidence->dtStartStr(true); |
1245 | startString += " --- "+((Event*)incidence)->dtEndStr(true); | 1245 | startString += " --- "+((Event*)incidence)->dtEndStr(true); |
1246 | 1246 | ||
1247 | } | 1247 | } |
1248 | 1248 | ||
1249 | } else { | 1249 | } else { |
1250 | if ( incidence->dtStart().time() != incidence->dtEnd().time() ) | 1250 | if ( incidence->dtStart().time() != incidence->dtEnd().time() ) |
1251 | startString = ": "+KGlobal::locale()->formatTime(incidence->dtStart().time())+ | 1251 | startString = ": "+KGlobal::locale()->formatTime(incidence->dtStart().time())+ |
1252 | "-"+KGlobal::locale()->formatTime(incidence->dtEnd().time()); | 1252 | "-"+KGlobal::locale()->formatTime(incidence->dtEnd().time()); |
1253 | startString +=" "+KGlobal::locale()->formatDate( incidence->dtStart().date(), true); | 1253 | startString +=" "+KGlobal::locale()->formatDate( incidence->dtStart().date(), true); |
1254 | } | 1254 | } |
1255 | 1255 | ||
1256 | } | 1256 | } |
1257 | else | 1257 | else |
1258 | startString = i18n(": (Prio ") +QString::number( (( KCal::Todo*)incidence)->priority() ) +") "+QString::number( (( KCal::Todo*)incidence)->percentComplete() ) +i18n("\% completed"); | 1258 | startString = i18n(": (Prio ") +QString::number( (( KCal::Todo*)incidence)->priority() ) +") "+QString::number( (( KCal::Todo*)incidence)->percentComplete() ) +i18n("\% completed"); |
1259 | if ( !incidence->location().isEmpty() ) | 1259 | if ( !incidence->location().isEmpty() ) |
1260 | startString += " (" +incidence->location()+")"; | 1260 | startString += " (" +incidence->location()+")"; |
1261 | setCaption( incidence->summary()+startString); | 1261 | setCaption( incidence->summary()+startString); |
1262 | 1262 | ||
1263 | enableIncidenceActions( true ); | 1263 | enableIncidenceActions( true ); |
1264 | 1264 | ||
1265 | if ( incidence->type() == "Event" ) { | 1265 | if ( incidence->type() == "Event" ) { |
1266 | mShowAction->setText( i18n("Show Event...") ); | 1266 | mShowAction->setText( i18n("Show Event...") ); |
1267 | mEditAction->setText( i18n("Edit Event...") ); | 1267 | mEditAction->setText( i18n("Edit Event...") ); |
1268 | mDeleteAction->setText( i18n("Delete Event...") ); | 1268 | mDeleteAction->setText( i18n("Delete Event...") ); |
1269 | 1269 | ||
1270 | mNewSubTodoAction->setEnabled( false ); | 1270 | mNewSubTodoAction->setEnabled( false ); |
1271 | } else if ( incidence->type() == "Todo" ) { | 1271 | } else if ( incidence->type() == "Todo" ) { |
1272 | mShowAction->setText( i18n("Show Todo...") ); | 1272 | mShowAction->setText( i18n("Show Todo...") ); |
1273 | mEditAction->setText( i18n("Edit Todo...") ); | 1273 | mEditAction->setText( i18n("Edit Todo...") ); |
1274 | mDeleteAction->setText( i18n("Delete Todo...") ); | 1274 | mDeleteAction->setText( i18n("Delete Todo...") ); |
1275 | 1275 | ||
1276 | mNewSubTodoAction->setEnabled( true ); | 1276 | mNewSubTodoAction->setEnabled( true ); |
1277 | } else { | 1277 | } else { |
1278 | mShowAction->setText( i18n("Show...") ); | 1278 | mShowAction->setText( i18n("Show...") ); |
1279 | mShowAction->setText( i18n("Edit...") ); | 1279 | mShowAction->setText( i18n("Edit...") ); |
1280 | mShowAction->setText( i18n("Delete...") ); | 1280 | mShowAction->setText( i18n("Delete...") ); |
1281 | 1281 | ||
1282 | mNewSubTodoAction->setEnabled( false ); | 1282 | mNewSubTodoAction->setEnabled( false ); |
1283 | } | 1283 | } |
1284 | } | 1284 | } |
1285 | 1285 | ||
1286 | void MainWindow::enableIncidenceActions( bool enabled ) | 1286 | void MainWindow::enableIncidenceActions( bool enabled ) |
1287 | { | 1287 | { |
1288 | mShowAction->setEnabled( enabled ); | 1288 | mShowAction->setEnabled( enabled ); |
1289 | mEditAction->setEnabled( enabled ); | 1289 | mEditAction->setEnabled( enabled ); |
1290 | mDeleteAction->setEnabled( enabled ); | 1290 | mDeleteAction->setEnabled( enabled ); |
1291 | 1291 | ||
1292 | mCloneAction->setEnabled( enabled ); | 1292 | mCloneAction->setEnabled( enabled ); |
1293 | mMoveAction->setEnabled( enabled ); | 1293 | mMoveAction->setEnabled( enabled ); |
1294 | mBeamAction->setEnabled( enabled ); | 1294 | mBeamAction->setEnabled( enabled ); |
1295 | mCancelAction->setEnabled( enabled ); | 1295 | mCancelAction->setEnabled( enabled ); |
1296 | } | 1296 | } |
1297 | 1297 | ||
1298 | void MainWindow::importOL() | 1298 | void MainWindow::importOL() |
1299 | { | 1299 | { |
1300 | #ifdef _WIN32_ | 1300 | #ifdef _WIN32_ |
1301 | KOImportOLdialog *id = new KOImportOLdialog("Import from OL - select folder!" , mView->calendar(),this ); | 1301 | KOImportOLdialog *id = new KOImportOLdialog("Import from OL - select folder!" , mView->calendar(),this ); |
1302 | id->exec(); | 1302 | id->exec(); |
1303 | delete id; | 1303 | delete id; |
1304 | mView->updateView(); | 1304 | mView->updateView(); |
1305 | #endif | 1305 | #endif |
1306 | } | 1306 | } |
1307 | void MainWindow::importBday() | 1307 | void MainWindow::importBday() |
1308 | { | 1308 | { |
1309 | int result = QMessageBox::warning( this, i18n("KO/Pi: Warning!"), | 1309 | int result = QMessageBox::warning( this, i18n("KO/Pi: Warning!"), |
1310 | i18n("When importing birthdays twice\nduplicated events will be ignored,\nif the event has not been\nchanged in KO/Pi!\n"), | 1310 | i18n("When importing birthdays twice\nduplicated events will be ignored,\nif the event has not been\nchanged in KO/Pi!\n"), |
1311 | i18n("Import!"), i18n("Cancel"), 0, | 1311 | i18n("Import!"), i18n("Cancel"), 0, |
1312 | 0, 1 ); | 1312 | 0, 1 ); |
1313 | if ( result == 0 ) { | 1313 | if ( result == 0 ) { |
1314 | mView->importBday(); | 1314 | mView->importBday(); |
1315 | 1315 | ||
1316 | } | 1316 | } |
1317 | 1317 | ||
1318 | 1318 | ||
1319 | } | 1319 | } |
1320 | void MainWindow::importQtopia() | 1320 | void MainWindow::importQtopia() |
1321 | { | 1321 | { |
1322 | #ifndef DESKTOP_VERSION | 1322 | #ifndef DESKTOP_VERSION |
1323 | int result = QMessageBox::warning( this, i18n("KO/Pi: Warning!"), | 1323 | int result = QMessageBox::warning( this, i18n("KO/Pi: Warning!"), |
1324 | 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"), | 1324 | 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"), |
1325 | i18n("Import!"), i18n("Cancel"), 0, | 1325 | i18n("Import!"), i18n("Cancel"), 0, |
1326 | 0, 1 ); | 1326 | 0, 1 ); |
1327 | if ( result == 0 ) { | 1327 | if ( result == 0 ) { |
1328 | QString datebook = Global::applicationFileName( "datebook", "datebook.xml"); | 1328 | QString datebook = Global::applicationFileName( "datebook", "datebook.xml"); |
1329 | QString todolist = Global::applicationFileName( "todolist", "todolist.xml"); | 1329 | QString todolist = Global::applicationFileName( "todolist", "todolist.xml"); |
1330 | QString categories = QString( getenv( "HOME" ) ) + "/Settings/Categories.xml"; | 1330 | QString categories = QString( getenv( "HOME" ) ) + "/Settings/Categories.xml"; |
1331 | mView->importQtopia( categories, datebook, todolist ); | 1331 | mView->importQtopia( categories, datebook, todolist ); |
1332 | } | 1332 | } |
1333 | #else | 1333 | #else |
1334 | int result = QMessageBox::warning( this, i18n("KO/Pi: Warning!"), | 1334 | int result = QMessageBox::warning( this, i18n("KO/Pi: Warning!"), |
1335 | i18n("Not supported \non desktop!\n"), | 1335 | i18n("Not supported \non desktop!\n"), |
1336 | i18n("Ok"), i18n("Cancel"), 0, | 1336 | i18n("Ok"), i18n("Cancel"), 0, |
1337 | 0, 1 ); | 1337 | 0, 1 ); |
1338 | 1338 | ||
1339 | #endif | 1339 | #endif |
1340 | } | 1340 | } |
1341 | 1341 | ||
1342 | void MainWindow::saveOnClose() | 1342 | void MainWindow::saveOnClose() |
1343 | { | 1343 | { |
1344 | KOPrefs *p = KOPrefs::instance(); | 1344 | KOPrefs *p = KOPrefs::instance(); |
1345 | p->mToolBarHor = ( iconToolBar->orientation () == Qt:: Horizontal ); | 1345 | p->mToolBarHor = ( iconToolBar->orientation () == Qt:: Horizontal ); |
1346 | p->mToolBarUp = iconToolBar->x() > width()/2 || | 1346 | p->mToolBarUp = iconToolBar->x() > width()/2 || |
1347 | iconToolBar->y() > height()/2; | 1347 | iconToolBar->y() > height()/2; |
1348 | mView->writeSettings(); | 1348 | mView->writeSettings(); |
1349 | if ( mCalendarModifiedFlag || mView->checkFileChanged( defaultFileName())) | 1349 | if ( mCalendarModifiedFlag || mView->checkFileChanged( defaultFileName())) |
1350 | save(); | 1350 | save(); |
1351 | } | 1351 | } |
1352 | void MainWindow::slotModifiedChanged( bool changed ) | 1352 | void MainWindow::slotModifiedChanged( bool changed ) |
1353 | { | 1353 | { |
1354 | if ( mBlockAtStartup ) | 1354 | if ( mBlockAtStartup ) |
1355 | return; | 1355 | return; |
1356 | int msec; | 1356 | int msec; |
1357 | // we store the changes after 1 minute, | 1357 | // we store the changes after 1 minute, |
1358 | // and for safety reasons after 10 minutes again | 1358 | // and for safety reasons after 10 minutes again |
1359 | if ( !mSyncManager->blockSave() ) | 1359 | if ( !mSyncManager->blockSave() ) |
1360 | msec = (1000 * 60*KOPrefs::instance()->mAutoSaveInterval) +1000; | 1360 | msec = (1000 * 60*KOPrefs::instance()->mAutoSaveInterval) +1000; |
1361 | else | 1361 | else |
1362 | msec = 1000 * 600; | 1362 | msec = 1000 * 600; |
1363 | mSaveTimer.start( msec, true ); // 1 minute | 1363 | mSaveTimer.start( msec, true ); // 1 minute |
1364 | qDebug("KO: Saving File in %d secs!", msec/1000); | 1364 | qDebug("KO: Saving File in %d secs!", msec/1000); |
1365 | mCalendarModifiedFlag = true; | 1365 | mCalendarModifiedFlag = true; |
1366 | } | 1366 | } |
1367 | void MainWindow::save() | 1367 | void MainWindow::save() |
1368 | { | 1368 | { |
1369 | if ( mSyncManager->blockSave() ) | 1369 | if ( mSyncManager->blockSave() ) |
1370 | return; | 1370 | return; |
1371 | mSyncManager->setBlockSave(true); | 1371 | mSyncManager->setBlockSave(true); |
1372 | if ( mView->checkFileVersion( defaultFileName()) ) { | 1372 | if ( mView->checkFileVersion( defaultFileName()) ) { |
1373 | 1373 | ||
1374 | QTime neededSaveTime = QDateTime::currentDateTime().time(); | 1374 | QTime neededSaveTime = QDateTime::currentDateTime().time(); |
1375 | setCaption(i18n("KO/Pi:Saving Data to File ..." )); | 1375 | setCaption(i18n("KO/Pi:Saving Data to File ..." )); |
1376 | qDebug("KO: Start saving data to file!"); | 1376 | qDebug("KO: Start saving data to file!"); |
1377 | mView->saveCalendar( defaultFileName() ); | 1377 | mView->saveCalendar( defaultFileName() ); |
1378 | 1378 | ||
1379 | int msNeeded = neededSaveTime.msecsTo( QDateTime::currentDateTime().time() ); | 1379 | int msNeeded = neededSaveTime.msecsTo( QDateTime::currentDateTime().time() ); |
1380 | qDebug("KO: Needed %d ms for saving.",msNeeded ); | 1380 | qDebug("KO: Needed %d ms for saving.",msNeeded ); |
1381 | QString savemes; | 1381 | QString savemes; |
1382 | savemes.sprintf(i18n("KO/Pi:File Saved. Needed %d sec, %d ms"),(msNeeded/1000)%100,msNeeded%1000 ); | 1382 | savemes.sprintf(i18n("KO/Pi:File Saved. Needed %d sec, %d ms"),(msNeeded/1000)%100,msNeeded%1000 ); |
1383 | setCaption(savemes); | 1383 | setCaption(savemes); |
1384 | } else | 1384 | } else |
1385 | setCaption(i18n("Saving cancelled!")); | 1385 | setCaption(i18n("Saving cancelled!")); |
1386 | mCalendarModifiedFlag = false; | 1386 | mCalendarModifiedFlag = false; |
1387 | mSyncManager->setBlockSave( false ); | 1387 | mSyncManager->setBlockSave( false ); |
1388 | } | 1388 | } |
1389 | 1389 | ||
1390 | void MainWindow::keyReleaseEvent ( QKeyEvent * e) | 1390 | void MainWindow::keyReleaseEvent ( QKeyEvent * e) |
1391 | { | 1391 | { |
1392 | if ( !e->isAutoRepeat() ) { | 1392 | if ( !e->isAutoRepeat() ) { |
1393 | mFlagKeyPressed = false; | 1393 | mFlagKeyPressed = false; |
1394 | } | 1394 | } |
1395 | } | 1395 | } |
1396 | void MainWindow::keyPressEvent ( QKeyEvent * e ) | 1396 | void MainWindow::keyPressEvent ( QKeyEvent * e ) |
1397 | { | 1397 | { |
1398 | qApp->processEvents(); | 1398 | qApp->processEvents(); |
1399 | if ( e->isAutoRepeat() && !mFlagKeyPressed ) { | 1399 | if ( e->isAutoRepeat() && !mFlagKeyPressed ) { |
1400 | e->ignore(); | 1400 | e->ignore(); |
1401 | // qDebug(" ignore %d",e->isAutoRepeat() ); | 1401 | // qDebug(" ignore %d",e->isAutoRepeat() ); |
1402 | return; | 1402 | return; |
1403 | } | 1403 | } |
1404 | if (! e->isAutoRepeat() ) | 1404 | if (! e->isAutoRepeat() ) |
1405 | mFlagKeyPressed = true; | 1405 | mFlagKeyPressed = true; |
1406 | KOPrefs *p = KOPrefs::instance(); | 1406 | KOPrefs *p = KOPrefs::instance(); |
1407 | bool showSelectedDates = false; | 1407 | bool showSelectedDates = false; |
1408 | int size; | 1408 | int size; |
1409 | int pro = 0; | 1409 | int pro = 0; |
1410 | //qDebug("MainWindow::keyPressEvent "); | 1410 | //qDebug("MainWindow::keyPressEvent "); |
1411 | switch ( e->key() ) { | 1411 | switch ( e->key() ) { |
1412 | case Qt::Key_Right: | 1412 | case Qt::Key_Right: |
1413 | if ( e->state() == Qt::ControlButton || e->state() == Qt::ShiftButton) | 1413 | if ( e->state() == Qt::ControlButton || e->state() == Qt::ShiftButton) |
1414 | mView->goNextMonth(); | 1414 | mView->goNextMonth(); |
1415 | else | 1415 | else |
1416 | mView->goNext(); | 1416 | mView->goNext(); |
1417 | showSelectedDates = true; | 1417 | showSelectedDates = true; |
1418 | break; | 1418 | break; |
1419 | case Qt::Key_Left: | 1419 | case Qt::Key_Left: |
1420 | if ( e->state() == Qt::ControlButton|| e->state() == Qt::ShiftButton ) | 1420 | if ( e->state() == Qt::ControlButton|| e->state() == Qt::ShiftButton ) |
1421 | mView->goPreviousMonth(); | 1421 | mView->goPreviousMonth(); |
1422 | else | 1422 | else |
1423 | mView->goPrevious(); | 1423 | mView->goPrevious(); |
1424 | showSelectedDates = true; | 1424 | showSelectedDates = true; |
1425 | break; | 1425 | break; |
1426 | case Qt::Key_Down: | 1426 | case Qt::Key_Down: |
1427 | mView->viewManager()->agendaView()->scrollOneHourDown(); | 1427 | mView->viewManager()->agendaView()->scrollOneHourDown(); |
1428 | break; | 1428 | break; |
1429 | case Qt::Key_Up: | 1429 | case Qt::Key_Up: |
1430 | mView->viewManager()->agendaView()->scrollOneHourUp(); | 1430 | mView->viewManager()->agendaView()->scrollOneHourUp(); |
1431 | break; | 1431 | break; |
1432 | case Qt::Key_I: | 1432 | case Qt::Key_I: |
1433 | mView->showIncidence(); | 1433 | mView->showIncidence(); |
1434 | break; | 1434 | break; |
1435 | case Qt::Key_Delete: | 1435 | case Qt::Key_Delete: |
1436 | case Qt::Key_Backspace: | 1436 | case Qt::Key_Backspace: |
1437 | mView->deleteIncidence(); | 1437 | mView->deleteIncidence(); |
1438 | break; | 1438 | break; |
1439 | case Qt::Key_D: | 1439 | case Qt::Key_D: |
1440 | mView->viewManager()->showDayView(); | 1440 | mView->viewManager()->showDayView(); |
1441 | showSelectedDates = true; | 1441 | showSelectedDates = true; |
1442 | break; | 1442 | break; |
1443 | case Qt::Key_O: | 1443 | case Qt::Key_O: |
1444 | mView->toggleFilerEnabled( ); | 1444 | mView->toggleFilerEnabled( ); |
1445 | break; | 1445 | break; |
1446 | case Qt::Key_0: | 1446 | case Qt::Key_0: |
1447 | case Qt::Key_1: | 1447 | case Qt::Key_1: |
1448 | case Qt::Key_2: | 1448 | case Qt::Key_2: |
1449 | case Qt::Key_3: | 1449 | case Qt::Key_3: |
1450 | case Qt::Key_4: | 1450 | case Qt::Key_4: |
1451 | case Qt::Key_5: | 1451 | case Qt::Key_5: |
1452 | case Qt::Key_6: | 1452 | case Qt::Key_6: |
1453 | case Qt::Key_7: | 1453 | case Qt::Key_7: |
1454 | case Qt::Key_8: | 1454 | case Qt::Key_8: |
1455 | case Qt::Key_9: | 1455 | case Qt::Key_9: |
1456 | pro = e->key()-48; | 1456 | pro = e->key()-48; |
1457 | if ( pro == 0 ) | 1457 | if ( pro == 0 ) |
1458 | pro = 10; | 1458 | pro = 10; |
1459 | if ( e->state() == Qt::ControlButton) | 1459 | if ( e->state() == Qt::ControlButton) |
1460 | pro += 10; | 1460 | pro += 10; |
1461 | break; | 1461 | break; |
1462 | case Qt::Key_M: | 1462 | case Qt::Key_M: |
1463 | mView->viewManager()->showMonthView(); | 1463 | mView->viewManager()->showMonthView(); |
1464 | showSelectedDates = true; | 1464 | showSelectedDates = true; |
1465 | break; | 1465 | break; |
1466 | case Qt::Key_Insert: | 1466 | case Qt::Key_Insert: |
1467 | mView->newEvent(); | 1467 | mView->newEvent(); |
1468 | break; | 1468 | break; |
1469 | case Qt::Key_S : | 1469 | case Qt::Key_S : |
1470 | if ( e->state() == Qt::ControlButton || e->state() == Qt::ShiftButton) | 1470 | if ( e->state() == Qt::ControlButton || e->state() == Qt::ShiftButton) |
1471 | mView->newSubTodo(); | 1471 | mView->newSubTodo(); |
1472 | else | 1472 | else |
1473 | mView->dialogManager()->showSearchDialog(); | 1473 | mView->dialogManager()->showSearchDialog(); |
1474 | break; | 1474 | break; |
1475 | case Qt::Key_Y : | 1475 | case Qt::Key_Y : |
1476 | case Qt::Key_Z : | 1476 | case Qt::Key_Z : |
1477 | mView->viewManager()->showWorkWeekView(); | 1477 | mView->viewManager()->showWorkWeekView(); |
1478 | showSelectedDates = true; | 1478 | showSelectedDates = true; |
1479 | break; | 1479 | break; |
1480 | case Qt::Key_U : | 1480 | case Qt::Key_U : |
1481 | mView->viewManager()->showWeekView(); | 1481 | mView->viewManager()->showWeekView(); |
1482 | showSelectedDates = true; | 1482 | showSelectedDates = true; |
1483 | break; | 1483 | break; |
1484 | case Qt::Key_H : | 1484 | case Qt::Key_H : |
1485 | keyBindings(); | 1485 | keyBindings(); |
1486 | break; | 1486 | break; |
1487 | case Qt::Key_W: | 1487 | case Qt::Key_W: |
1488 | mView->viewManager()->showWhatsNextView(); | 1488 | mView->viewManager()->showWhatsNextView(); |
1489 | break; | 1489 | break; |
1490 | case Qt::Key_L: | 1490 | case Qt::Key_L: |
1491 | mView->viewManager()->showListView(); | 1491 | mView->viewManager()->showListView(); |
1492 | break; | 1492 | break; |
1493 | case Qt::Key_N: | 1493 | case Qt::Key_N: |
1494 | mView->viewManager()->showNextXView(); | 1494 | mView->viewManager()->showNextXView(); |
1495 | showSelectedDates = true; | 1495 | showSelectedDates = true; |
1496 | break; | 1496 | break; |
1497 | case Qt::Key_V: | 1497 | case Qt::Key_V: |
1498 | mView->viewManager()->showTodoView(); | 1498 | mView->viewManager()->showTodoView(); |
1499 | break; | 1499 | break; |
1500 | case Qt::Key_C: | 1500 | case Qt::Key_C: |
1501 | mView->viewManager()->agendaView()->setStartHour( QTime::currentTime ().hour() ); | 1501 | mView->viewManager()->agendaView()->setStartHour( QTime::currentTime ().hour() ); |
1502 | break; | 1502 | break; |
1503 | case Qt::Key_P: | 1503 | case Qt::Key_P: |
1504 | mView->showDatePicker( ); | 1504 | mView->showDatePicker( ); |
1505 | break; | 1505 | break; |
1506 | case Qt::Key_F: | 1506 | case Qt::Key_F: |
1507 | if ( e->state() == Qt::ControlButton|| e->state() == Qt::ShiftButton ) | 1507 | if ( e->state() == Qt::ControlButton|| e->state() == Qt::ShiftButton ) |
1508 | mView->editFilters(); | 1508 | mView->editFilters(); |
1509 | else | 1509 | else |
1510 | mView->toggleFilter(); | 1510 | mView->toggleFilter(); |
1511 | break; | 1511 | break; |
1512 | case Qt::Key_X: | 1512 | case Qt::Key_X: |
1513 | mView->toggleDateNavigatorWidget(); | 1513 | mView->toggleDateNavigatorWidget(); |
1514 | break; | 1514 | break; |
1515 | case Qt::Key_Space: | 1515 | case Qt::Key_Space: |
1516 | mView->toggleExpand(); | 1516 | mView->toggleExpand(); |
1517 | break; | 1517 | break; |
1518 | case Qt::Key_A: | 1518 | case Qt::Key_A: |
1519 | mView->toggleAllDaySize(); | 1519 | mView->toggleAllDaySize(); |
1520 | break; | 1520 | break; |
1521 | case Qt::Key_T: | 1521 | case Qt::Key_T: |
1522 | if ( e->state() == Qt::ControlButton|| e->state() == Qt::ShiftButton ) | 1522 | if ( e->state() == Qt::ControlButton|| e->state() == Qt::ShiftButton ) |
1523 | mView->newTodo(); | 1523 | mView->newTodo(); |
1524 | else { | 1524 | else { |
1525 | mView->goToday(); | 1525 | mView->goToday(); |
1526 | showSelectedDates = true; | 1526 | showSelectedDates = true; |
1527 | } | 1527 | } |
1528 | break; | 1528 | break; |
1529 | case Qt::Key_J: | 1529 | case Qt::Key_J: |
1530 | mView->viewManager()->showJournalView(); | 1530 | mView->viewManager()->showJournalView(); |
1531 | break; | 1531 | break; |
1532 | case Qt::Key_B: | 1532 | case Qt::Key_B: |
1533 | mView->editIncidenceDescription();; | 1533 | mView->editIncidenceDescription();; |
1534 | break; | 1534 | break; |
1535 | // case Qt::Key_Return: | 1535 | // case Qt::Key_Return: |
1536 | case Qt::Key_E: | 1536 | case Qt::Key_E: |
1537 | if ( e->state() == Qt::ControlButton|| e->state() == Qt::ShiftButton ) | 1537 | if ( e->state() == Qt::ControlButton|| e->state() == Qt::ShiftButton ) |
1538 | mView->newEvent(); | 1538 | mView->newEvent(); |
1539 | else | 1539 | else |
1540 | mView->editIncidence(); | 1540 | mView->editIncidence(); |
1541 | break; | 1541 | break; |
1542 | case Qt::Key_Plus: | 1542 | case Qt::Key_Plus: |
1543 | size = p->mHourSize +2; | 1543 | size = p->mHourSize +2; |
1544 | if ( size <= 18 ) | 1544 | if ( size <= 18 ) |
1545 | configureAgenda( size ); | 1545 | configureAgenda( size ); |
1546 | break; | 1546 | break; |
1547 | case Qt::Key_Minus: | 1547 | case Qt::Key_Minus: |
1548 | size = p->mHourSize - 2; | 1548 | size = p->mHourSize - 2; |
1549 | if ( size >= 4 ) | 1549 | if ( size >= 4 ) |
1550 | configureAgenda( size ); | 1550 | configureAgenda( size ); |
1551 | break; | 1551 | break; |
1552 | 1552 | ||
1553 | 1553 | ||
1554 | default: | 1554 | default: |
1555 | e->ignore(); | 1555 | e->ignore(); |
1556 | } | 1556 | } |
1557 | if ( pro > 0 ) { | 1557 | if ( pro > 0 ) { |
1558 | mView->selectFilter( pro-1 ); | 1558 | mView->selectFilter( pro-1 ); |
1559 | } | 1559 | } |
1560 | if ( showSelectedDates ) { | 1560 | if ( showSelectedDates ) { |
1561 | ;// setCaptionToDates(); | 1561 | ;// setCaptionToDates(); |
1562 | } | 1562 | } |
1563 | 1563 | ||
1564 | } | 1564 | } |
1565 | 1565 | ||
1566 | void MainWindow::fillFilterMenu() | 1566 | void MainWindow::fillFilterMenu() |
1567 | { | 1567 | { |
1568 | selectFilterMenu->clear(); | 1568 | selectFilterMenu->clear(); |
1569 | bool disable = false; | 1569 | bool disable = false; |
1570 | if ( mView->filterView()->filtersEnabled() ) { | 1570 | if ( mView->filterView()->filtersEnabled() ) { |
1571 | selectFilterMenu->insertItem(i18n ( "Turn filter off" ), 0 ); | 1571 | selectFilterMenu->insertItem(i18n ( "Turn filter off" ), 0 ); |
1572 | } | 1572 | } |
1573 | else { | 1573 | else { |
1574 | selectFilterMenu->insertItem(i18n ( "Turn filter on" ), 0 ); | 1574 | selectFilterMenu->insertItem(i18n ( "Turn filter on" ), 0 ); |
1575 | disable = true; | 1575 | disable = true; |
1576 | } | 1576 | } |
1577 | selectFilterMenu->insertSeparator(); | 1577 | selectFilterMenu->insertSeparator(); |
1578 | QPtrList<CalFilter> fili = mView->filters(); | 1578 | QPtrList<CalFilter> fili = mView->filters(); |
1579 | CalFilter *curfilter = mView->filterView()->selectedFilter(); | 1579 | CalFilter *curfilter = mView->filterView()->selectedFilter(); |
1580 | CalFilter *filter = fili.first(); | 1580 | CalFilter *filter = fili.first(); |
1581 | int iii = 1; | 1581 | int iii = 1; |
1582 | while(filter) { | 1582 | while(filter) { |
1583 | selectFilterMenu->insertItem( filter->name(), iii ); | 1583 | selectFilterMenu->insertItem( filter->name(), iii ); |
1584 | if ( filter == curfilter) | 1584 | if ( filter == curfilter) |
1585 | selectFilterMenu->setItemChecked( iii, true ); | 1585 | selectFilterMenu->setItemChecked( iii, true ); |
1586 | if ( disable ) | 1586 | if ( disable ) |
1587 | selectFilterMenu->setItemEnabled( iii, false ); | 1587 | selectFilterMenu->setItemEnabled( iii, false ); |
1588 | filter = fili.next(); | 1588 | filter = fili.next(); |
1589 | ++iii; | 1589 | ++iii; |
1590 | } | 1590 | } |
1591 | } | 1591 | } |
1592 | void MainWindow::selectFilter( int fil ) | 1592 | void MainWindow::selectFilter( int fil ) |
1593 | { | 1593 | { |
1594 | if ( fil == 0 ) { | 1594 | if ( fil == 0 ) { |
1595 | mView->toggleFilerEnabled( ); | 1595 | mView->toggleFilerEnabled( ); |
1596 | } else { | 1596 | } else { |
1597 | mView->selectFilter( fil-1 ); | 1597 | mView->selectFilter( fil-1 ); |
1598 | } | 1598 | } |
1599 | } | 1599 | } |
1600 | void MainWindow::configureToolBar( int item ) | 1600 | void MainWindow::configureToolBar( int item ) |
1601 | { | 1601 | { |
1602 | 1602 | ||
1603 | configureToolBarMenu->setItemChecked( item, !configureToolBarMenu-> isItemChecked ( item ) ); | 1603 | configureToolBarMenu->setItemChecked( item, !configureToolBarMenu-> isItemChecked ( item ) ); |
1604 | KOPrefs *p = KOPrefs::instance(); | 1604 | KOPrefs *p = KOPrefs::instance(); |
1605 | p-> mShowIconStretch= configureToolBarMenu->isItemChecked( 5 ); | 1605 | p-> mShowIconStretch= configureToolBarMenu->isItemChecked( 5 ); |
1606 | p-> mShowIconNewEvent= configureToolBarMenu->isItemChecked( 10 ); | 1606 | p-> mShowIconNewEvent= configureToolBarMenu->isItemChecked( 10 ); |
1607 | p->mShowIconNewTodo = configureToolBarMenu->isItemChecked( 20 ); | 1607 | p->mShowIconNewTodo = configureToolBarMenu->isItemChecked( 20 ); |
1608 | p-> mShowIconSearch= configureToolBarMenu->isItemChecked( 120 ); | 1608 | p-> mShowIconSearch= configureToolBarMenu->isItemChecked( 120 ); |
1609 | p-> mShowIconList= configureToolBarMenu->isItemChecked( 30 ); | 1609 | p-> mShowIconList= configureToolBarMenu->isItemChecked( 30 ); |
1610 | p-> mShowIconDay1= configureToolBarMenu->isItemChecked( 40 ); | 1610 | p-> mShowIconDay1= configureToolBarMenu->isItemChecked( 40 ); |
1611 | p-> mShowIconDay5= configureToolBarMenu->isItemChecked( 50 ); | 1611 | p-> mShowIconDay5= configureToolBarMenu->isItemChecked( 50 ); |
1612 | p-> mShowIconDay7= configureToolBarMenu->isItemChecked( 60 ); | 1612 | p-> mShowIconDay7= configureToolBarMenu->isItemChecked( 60 ); |
1613 | p-> mShowIconMonth= configureToolBarMenu->isItemChecked( 70 ); | 1613 | p-> mShowIconMonth= configureToolBarMenu->isItemChecked( 70 ); |
1614 | p-> mShowIconTodoview= configureToolBarMenu->isItemChecked( 80 ); | 1614 | p-> mShowIconTodoview= configureToolBarMenu->isItemChecked( 80 ); |
1615 | p-> mShowIconBackFast= configureToolBarMenu->isItemChecked( 200 ); | 1615 | p-> mShowIconBackFast= configureToolBarMenu->isItemChecked( 200 ); |
1616 | p-> mShowIconBack = configureToolBarMenu->isItemChecked( 210 ); | 1616 | p-> mShowIconBack = configureToolBarMenu->isItemChecked( 210 ); |
1617 | p-> mShowIconToday= configureToolBarMenu->isItemChecked( 130 ); | 1617 | p-> mShowIconToday= configureToolBarMenu->isItemChecked( 130 ); |
1618 | p-> mShowIconForward= configureToolBarMenu->isItemChecked( 220 ); | 1618 | p-> mShowIconForward= configureToolBarMenu->isItemChecked( 220 ); |
1619 | p-> mShowIconForwardFast= configureToolBarMenu->isItemChecked( 230 ); | 1619 | p-> mShowIconForwardFast= configureToolBarMenu->isItemChecked( 230 ); |
1620 | p-> mShowIconNextDays= configureToolBarMenu->isItemChecked( 100 ); | 1620 | p-> mShowIconNextDays= configureToolBarMenu->isItemChecked( 100 ); |
1621 | p-> mShowIconNext= configureToolBarMenu->isItemChecked( 110 ); | 1621 | p-> mShowIconNext= configureToolBarMenu->isItemChecked( 110 ); |
1622 | p-> mShowIconJournal= configureToolBarMenu->isItemChecked( 90 ); | 1622 | p-> mShowIconJournal= configureToolBarMenu->isItemChecked( 90 ); |
1623 | p-> mShowIconWhatsThis= configureToolBarMenu->isItemChecked( 300 ); | 1623 | p-> mShowIconWhatsThis= configureToolBarMenu->isItemChecked( 300 ); |
1624 | // initActions(); | 1624 | // initActions(); |
1625 | } | 1625 | } |
1626 | 1626 | ||
1627 | void MainWindow::setCaptionToDates() | 1627 | void MainWindow::setCaptionToDates() |
1628 | { | 1628 | { |
1629 | QString selDates; | 1629 | QString selDates; |
1630 | selDates = KGlobal::locale()->formatDate(mView->startDate(), true); | 1630 | selDates = KGlobal::locale()->formatDate(mView->startDate(), true); |
1631 | if (mView->startDate() < mView->endDate() ) | 1631 | if (mView->startDate() < mView->endDate() ) |
1632 | selDates += " - " + KGlobal::locale()->formatDate(mView->endDate(), true); | 1632 | selDates += " - " + KGlobal::locale()->formatDate(mView->endDate(), true); |
1633 | setCaption( i18n("Dates: ") + selDates ); | 1633 | setCaption( i18n("Dates: ") + selDates ); |
1634 | 1634 | ||
1635 | } | 1635 | } |
1636 | // parameter item == 0: reinit | 1636 | // parameter item == 0: reinit |
1637 | void MainWindow::configureAgenda( int item ) | 1637 | void MainWindow::configureAgenda( int item ) |
1638 | { | 1638 | { |
1639 | 1639 | ||
1640 | KOPrefs *p = KOPrefs::instance(); | 1640 | KOPrefs *p = KOPrefs::instance(); |
1641 | 1641 | ||
1642 | int i; | 1642 | int i; |
1643 | if ( item == 1 ) { | 1643 | if ( item == 1 ) { |
1644 | mView->toggleAllDaySize(); | 1644 | mView->toggleAllDaySize(); |
1645 | return; | 1645 | return; |
1646 | } | 1646 | } |
1647 | // do not allow 4 for widgets higher than 480 | 1647 | // do not allow 4 for widgets higher than 480 |
1648 | // if ( QApplication::desktop()->height() > 480 ) { | 1648 | // if ( QApplication::desktop()->height() > 480 ) { |
1649 | // if ( item == 4 ) | 1649 | // if ( item == 4 ) |
1650 | // item = 6; | 1650 | // item = 6; |
1651 | // } | 1651 | // } |
1652 | for ( i = 4; i <= 18; i= i+2 ) | 1652 | for ( i = 4; i <= 18; i= i+2 ) |
1653 | configureAgendaMenu->setItemChecked( i, false ); | 1653 | configureAgendaMenu->setItemChecked( i, false ); |
1654 | configureAgendaMenu->setItemChecked( item, true ); | 1654 | configureAgendaMenu->setItemChecked( item, true ); |
1655 | if ( p->mHourSize == item ) | 1655 | if ( p->mHourSize == item ) |
1656 | return; | 1656 | return; |
1657 | p->mHourSize=item; | 1657 | p->mHourSize=item; |
1658 | mView->viewManager()->agendaView()->updateConfig(); | 1658 | mView->viewManager()->agendaView()->updateConfig(); |
1659 | } | 1659 | } |
1660 | 1660 | ||
1661 | void MainWindow::saveCalendar() | 1661 | void MainWindow::saveCalendar() |
1662 | { | 1662 | { |
1663 | QString fn = KOPrefs::instance()->mLastSaveFile; | 1663 | QString fn = KOPrefs::instance()->mLastSaveFile; |
1664 | fn = KFileDialog::getSaveFileName( fn, i18n("Save backup filename"), this ); | 1664 | fn = KFileDialog::getSaveFileName( fn, i18n("Save backup filename"), this ); |
1665 | 1665 | ||
1666 | if ( fn == "" ) | 1666 | if ( fn == "" ) |
1667 | return; | 1667 | return; |
1668 | QFileInfo info; | 1668 | QFileInfo info; |
1669 | info.setFile( fn ); | 1669 | info.setFile( fn ); |
1670 | QString mes; | 1670 | QString mes; |
1671 | bool createbup = true; | 1671 | bool createbup = true; |
1672 | if ( info. exists() ) { | 1672 | if ( info. exists() ) { |
1673 | mes = i18n("Backup file\nalready exists!\nOld backup file from:\n%1\nOverwrite?\n").arg(KGlobal::locale()->formatDateTime(info.lastModified (), true, false )) ; | 1673 | mes = i18n("Backup file\nalready exists!\nOld backup file from:\n%1\nOverwrite?\n").arg(KGlobal::locale()->formatDateTime(info.lastModified (), true, false )) ; |
1674 | int result = QMessageBox::warning( this, i18n("KO/Pi: Warning!"),mes, | 1674 | int result = QMessageBox::warning( this, i18n("KO/Pi: Warning!"),mes, |
1675 | i18n("Overwrite!"), i18n("Cancel"), 0, | 1675 | i18n("Overwrite!"), i18n("Cancel"), 0, |
1676 | 0, 1 ); | 1676 | 0, 1 ); |
1677 | if ( result != 0 ) { | 1677 | if ( result != 0 ) { |
1678 | createbup = false; | 1678 | createbup = false; |
1679 | } | 1679 | } |
1680 | } | 1680 | } |
1681 | if ( createbup ) { | 1681 | if ( createbup ) { |
1682 | mView->saveCalendar( fn ); | 1682 | mView->saveCalendar( fn ); |
1683 | mes = i18n("KO/Pi:Saved %1").arg(fn); | 1683 | mes = i18n("KO/Pi:Saved %1").arg(fn); |
1684 | KOPrefs::instance()->mLastSaveFile = fn; | 1684 | KOPrefs::instance()->mLastSaveFile = fn; |
1685 | setCaption(mes); | 1685 | setCaption(mes); |
1686 | } | 1686 | } |
1687 | } | 1687 | } |
1688 | void MainWindow::loadCalendar() | 1688 | void MainWindow::loadCalendar() |
1689 | { | 1689 | { |
1690 | 1690 | ||
1691 | QString fn = KOPrefs::instance()->mLastLoadFile; | 1691 | QString fn = KOPrefs::instance()->mLastLoadFile; |
1692 | fn = KFileDialog::getOpenFileName( fn, i18n("Load backup filename"), this ); | 1692 | fn = KFileDialog::getOpenFileName( fn, i18n("Load backup filename"), this ); |
1693 | 1693 | ||
1694 | if ( fn == "" ) | 1694 | if ( fn == "" ) |
1695 | return; | 1695 | return; |
1696 | QFileInfo info; | 1696 | QFileInfo info; |
1697 | info.setFile( fn ); | 1697 | info.setFile( fn ); |
1698 | QString mess; | 1698 | QString mess; |
1699 | bool loadbup = true; | 1699 | bool loadbup = true; |
1700 | if ( info. exists() ) { | 1700 | if ( info. exists() ) { |
1701 | mess = i18n("Backup file from:\n%1\nLoading backup\nfile will delete\nyour current Data!\n").arg(KGlobal::locale()->formatDateTime(info.lastModified (), true, false )); | 1701 | mess = i18n("Backup file from:\n%1\nLoading backup\nfile will delete\nyour current Data!\n").arg(KGlobal::locale()->formatDateTime(info.lastModified (), true, false )); |
1702 | int result = QMessageBox::warning( this, "KO/Pi: Warning!", | 1702 | int result = QMessageBox::warning( this, "KO/Pi: Warning!", |
1703 | mess, | 1703 | mess, |
1704 | i18n("Load!"), i18n("Cancel"), 0, | 1704 | i18n("Load!"), i18n("Cancel"), 0, |
1705 | 0, 1 ); | 1705 | 0, 1 ); |
1706 | if ( result != 0 ) { | 1706 | if ( result != 0 ) { |
1707 | loadbup = false; | 1707 | loadbup = false; |
1708 | } | 1708 | } |
1709 | } else { | 1709 | } else { |
1710 | QMessageBox::warning( this, i18n("KO/Pi: Warning!"), | 1710 | QMessageBox::warning( this, i18n("KO/Pi: Warning!"), |
1711 | i18n("Backup file\ndoes not exist!\nNothing loaded!"), 0, 0, | 1711 | i18n("Backup file\ndoes not exist!\nNothing loaded!"), 0, 0, |
1712 | 0, 1 ); | 1712 | 0, 1 ); |
1713 | 1713 | ||
1714 | return; | 1714 | return; |
1715 | } | 1715 | } |
1716 | if ( loadbup ) { | 1716 | if ( loadbup ) { |
1717 | mView->openCalendar( fn ); | 1717 | mView->openCalendar( fn ); |
1718 | KOPrefs::instance()->mLastLoadFile = fn; | 1718 | KOPrefs::instance()->mLastLoadFile = fn; |
1719 | mess = i18n("KO/Pi:Loaded %1").arg(fn) ; | 1719 | mess = i18n("KO/Pi:Loaded %1").arg(fn) ; |
1720 | setCaption(mess); | 1720 | setCaption(mess); |
1721 | } | 1721 | } |
1722 | 1722 | ||
1723 | } | 1723 | } |
1724 | void MainWindow::quickImportIcal() | 1724 | void MainWindow::quickImportIcal() |
1725 | { | 1725 | { |
1726 | importFile( KOPrefs::instance()->mLastImportFile, false ); | 1726 | importFile( KOPrefs::instance()->mLastImportFile, false ); |
1727 | } | 1727 | } |
1728 | void MainWindow::importFile( QString fn, bool quick ) | 1728 | void MainWindow::importFile( QString fn, bool quick ) |
1729 | { | 1729 | { |
1730 | QFileInfo info; | 1730 | QFileInfo info; |
1731 | info.setFile( fn ); | 1731 | info.setFile( fn ); |
1732 | QString mess; | 1732 | QString mess; |
1733 | bool loadbup = true; | 1733 | bool loadbup = true; |
1734 | if ( !info. exists() ) { | 1734 | if ( !info. exists() ) { |
1735 | mess = i18n("Import file \n...%1\ndoes not exist!\nNothing imported!\n").arg(fn.right( 30)); | 1735 | mess = i18n("Import file \n...%1\ndoes not exist!\nNothing imported!\n").arg(fn.right( 30)); |
1736 | int result = QMessageBox::warning( this, i18n("KO/Pi: Warning!"), | 1736 | int result = QMessageBox::warning( this, i18n("KO/Pi: Warning!"), |
1737 | mess ); | 1737 | mess ); |
1738 | return; | 1738 | return; |
1739 | } | 1739 | } |
1740 | int result = 0; | 1740 | int result = 0; |
1741 | if ( !quick ) { | 1741 | if ( !quick ) { |
1742 | mess = i18n( "Import file \n...%1\nfrom:\n%2\nDuplicated entries\nwill not be imported!\n").arg(fn.right( 25)).arg(KGlobal::locale()->formatDateTime(info.lastModified (), true, false )); | 1742 | mess = i18n( "Import file \n...%1\nfrom:\n%2\nDuplicated entries\nwill not be imported!\n").arg(fn.right( 25)).arg(KGlobal::locale()->formatDateTime(info.lastModified (), true, false )); |
1743 | result = QMessageBox::warning( this, "KO/Pi: Warning!", | 1743 | result = QMessageBox::warning( this, "KO/Pi: Warning!", |
1744 | mess, | 1744 | mess, |
1745 | "Import", "Cancel", 0, | 1745 | "Import", "Cancel", 0, |
1746 | 0, 1 ); | 1746 | 0, 1 ); |
1747 | } | 1747 | } |
1748 | if ( result == 0 ) { | 1748 | if ( result == 0 ) { |
1749 | if ( mView->openCalendar( fn, true )) { | 1749 | if ( mView->openCalendar( fn, true )) { |
1750 | KOPrefs::instance()->mLastImportFile = fn; | 1750 | KOPrefs::instance()->mLastImportFile = fn; |
1751 | setCaption(i18n("Imported file successfully")); | 1751 | setCaption(i18n("Imported file successfully")); |
1752 | } else { | 1752 | } else { |
1753 | setCaption(i18n("Error importing file")); | 1753 | setCaption(i18n("Error importing file")); |
1754 | } | 1754 | } |
1755 | } | 1755 | } |
1756 | } | 1756 | } |
1757 | 1757 | ||
1758 | void MainWindow::importIcal() | 1758 | void MainWindow::importIcal() |
1759 | { | 1759 | { |
1760 | 1760 | ||
1761 | QString fn =KOPrefs::instance()->mLastImportFile; | 1761 | QString fn =KOPrefs::instance()->mLastImportFile; |
1762 | 1762 | ||
1763 | fn =KFileDialog:: getOpenFileName( fn, i18n("Import filename(*.ics/*.vcs)"), this ); | 1763 | fn =KFileDialog:: getOpenFileName( fn, i18n("Import filename(*.ics/*.vcs)"), this ); |
1764 | if ( fn == "" ) | 1764 | if ( fn == "" ) |
1765 | return; | 1765 | return; |
1766 | importFile( fn, true ); | 1766 | importFile( fn, true ); |
1767 | 1767 | ||
1768 | } | 1768 | } |
1769 | 1769 | ||
1770 | void MainWindow::exportVCalendar() | 1770 | void MainWindow::exportVCalendar() |
1771 | { | 1771 | { |
1772 | QString fn = KOPrefs::instance()->mLastVcalFile; | 1772 | QString fn = KOPrefs::instance()->mLastVcalFile; |
1773 | fn = KFileDialog::getSaveFileName( fn, i18n("Export vcal filename(*.vcs)"), this ); | 1773 | fn = KFileDialog::getSaveFileName( fn, i18n("Export vcal filename(*.vcs)"), this ); |
1774 | if ( fn == "" ) | 1774 | if ( fn == "" ) |
1775 | return; | 1775 | return; |
1776 | QFileInfo info; | 1776 | QFileInfo info; |
1777 | info.setFile( fn ); | 1777 | info.setFile( fn ); |
1778 | QString mes; | 1778 | QString mes; |
1779 | bool createbup = true; | 1779 | bool createbup = true; |
1780 | if ( info. exists() ) { | 1780 | if ( info. exists() ) { |
1781 | mes = i18n("Save file\nalready exists!\nOld save file from:\n%1\nOverwrite?\n").arg (KGlobal::locale()->formatDateTime(info.lastModified (), true, false ) ); | 1781 | mes = i18n("Save file\nalready exists!\nOld save file from:\n%1\nOverwrite?\n").arg (KGlobal::locale()->formatDateTime(info.lastModified (), true, false ) ); |
1782 | int result = QMessageBox::warning( this, i18n("KO/Pi: Warning!"),mes, | 1782 | int result = QMessageBox::warning( this, i18n("KO/Pi: Warning!"),mes, |
1783 | i18n("Overwrite!"), i18n("Cancel"), 0, | 1783 | i18n("Overwrite!"), i18n("Cancel"), 0, |
1784 | 0, 1 ); | 1784 | 0, 1 ); |
1785 | if ( result != 0 ) { | 1785 | if ( result != 0 ) { |
1786 | createbup = false; | 1786 | createbup = false; |
1787 | } | 1787 | } |
1788 | } | 1788 | } |
1789 | if ( createbup ) { | 1789 | if ( createbup ) { |
1790 | if ( mView->exportVCalendar( fn ) ) { | 1790 | if ( mView->exportVCalendar( fn ) ) { |
1791 | KOPrefs::instance()->mLastVcalFile = fn; | 1791 | KOPrefs::instance()->mLastVcalFile = fn; |
1792 | if ( fn.length() > 20 ) | 1792 | if ( fn.length() > 20 ) |
1793 | mes = i18n("KO/Pi:Exported to ...%1").arg(fn.right(20)) ; | 1793 | mes = i18n("KO/Pi:Exported to ...%1").arg(fn.right(20)) ; |
1794 | else | 1794 | else |
1795 | mes = i18n("KO/Pi:Exported to %1").arg(fn ); | 1795 | mes = i18n("KO/Pi:Exported to %1").arg(fn ); |
1796 | setCaption(mes); | 1796 | setCaption(mes); |
1797 | } | 1797 | } |
1798 | } | 1798 | } |
1799 | 1799 | ||
1800 | } | 1800 | } |
1801 | 1801 | ||
1802 | void MainWindow::syncFileRequest() | 1802 | void MainWindow::syncFileRequest() |
1803 | { | 1803 | { |
1804 | save(); | 1804 | save(); |
1805 | } | 1805 | } |
1806 | void MainWindow::getFile( bool success ) | 1806 | void MainWindow::getFile( bool success ) |
1807 | { | 1807 | { |
1808 | if ( ! success ) { | 1808 | if ( ! success ) { |
1809 | setCaption( i18n("Error receiving file. Nothing changed!") ); | 1809 | setCaption( i18n("Error receiving file. Nothing changed!") ); |
1810 | return; | 1810 | return; |
1811 | } | 1811 | } |
1812 | mView->openCalendar( defaultFileName() ); | 1812 | mView->openCalendar( defaultFileName() ); |
1813 | setCaption( i18n("Pi-Sync successful!") ); | 1813 | setCaption( i18n("Pi-Sync successful!") ); |
1814 | } | 1814 | } |
1815 | 1815 | ||
1816 | void MainWindow::printSel( ) | 1816 | void MainWindow::printSel( ) |
1817 | { | 1817 | { |
1818 | mView->viewManager()->agendaView()->agenda()->printSelection(); | 1818 | mView->viewManager()->agendaView()->agenda()->printSelection(); |
1819 | } | 1819 | } |
1820 | 1820 | ||
1821 | void MainWindow::printCal() | 1821 | void MainWindow::printCal() |
1822 | { | 1822 | { |
1823 | mView->print();//mCp->showDialog(); | 1823 | mView->print();//mCp->showDialog(); |
1824 | } | 1824 | } |
1825 | 1825 | ||