-rw-r--r-- | libkcal/phoneformat.cpp | 60 | ||||
-rw-r--r-- | libkcal/phoneformat.h | 2 | ||||
-rw-r--r-- | libkcal/vcalformat.cpp | 19 | ||||
-rw-r--r-- | libkcal/vcalformat.h | 2 |
4 files changed, 32 insertions, 51 deletions
diff --git a/libkcal/phoneformat.cpp b/libkcal/phoneformat.cpp index 11c68c5..e6d4879 100644 --- a/libkcal/phoneformat.cpp +++ b/libkcal/phoneformat.cpp | |||
@@ -745,309 +745,267 @@ ulong PhoneFormat::getCsum( const QStringList & attList) | |||
745 | int add; | 745 | int add; |
746 | for ( i = 1; i < max ; ++i ) { | 746 | for ( i = 1; i < max ; ++i ) { |
747 | QString s = attList[i]; | 747 | QString s = attList[i]; |
748 | if ( ! s.isEmpty() ){ | 748 | if ( ! s.isEmpty() ){ |
749 | j = s.length(); | 749 | j = s.length(); |
750 | for ( k = 0; k < j; ++k ) { | 750 | for ( k = 0; k < j; ++k ) { |
751 | int mul = k +1; | 751 | int mul = k +1; |
752 | add = s[k].unicode (); | 752 | add = s[k].unicode (); |
753 | if ( k < 16 ) | 753 | if ( k < 16 ) |
754 | mul = mul * mul; | 754 | mul = mul * mul; |
755 | add = add * mul *i*i*i; | 755 | add = add * mul *i*i*i; |
756 | cSum += add; | 756 | cSum += add; |
757 | } | 757 | } |
758 | } | 758 | } |
759 | } | 759 | } |
760 | return cSum; | 760 | return cSum; |
761 | 761 | ||
762 | } | 762 | } |
763 | //extern "C" GSM_Error GSM_InitConnection(GSM_StateMachine *s, int ReplyNum); | 763 | //extern "C" GSM_Error GSM_InitConnection(GSM_StateMachine *s, int ReplyNum); |
764 | #include <stdlib.h> | 764 | #include <stdlib.h> |
765 | #define DEBUGMODE false | 765 | #define DEBUGMODE false |
766 | bool PhoneFormat::load( Calendar *calendar, Calendar *existingCal) | 766 | bool PhoneFormat::load( Calendar *calendar, Calendar *existingCal) |
767 | { | 767 | { |
768 | GSM_StateMachines; | 768 | GSM_StateMachines; |
769 | qDebug(" load "); | 769 | qDebug(" load "); |
770 | s.opened = false; | 770 | s.opened = false; |
771 | s.msg = NULL; | 771 | s.msg = NULL; |
772 | s.ConfigNum = 0; | 772 | s.ConfigNum = 0; |
773 | QLabel status ( i18n("Reading data. Opening device ..."), 0 ); | 773 | QLabel status ( i18n("Reading data. Opening device ..."), 0 ); |
774 | int w = status.sizeHint().width()+20 ; | 774 | int w = status.sizeHint().width()+20 ; |
775 | if ( w < 200 ) w = 200; | 775 | if ( w < 200 ) w = 200; |
776 | int h = status.sizeHint().height()+20 ; | 776 | int h = status.sizeHint().height()+20 ; |
777 | int dw = QApplication::desktop()->width(); | 777 | int dw = QApplication::desktop()->width(); |
778 | int dh = QApplication::desktop()->height(); | 778 | int dh = QApplication::desktop()->height(); |
779 | status.setCaption(i18n("Reading Phone Data") ); | 779 | status.setCaption(i18n("Reading Phone Data") ); |
780 | status.setGeometry( (dw-w)/2, (dh - h )/2 ,w,h ); | 780 | status.setGeometry( (dw-w)/2, (dh - h )/2 ,w,h ); |
781 | status.show(); | 781 | status.show(); |
782 | status.raise(); | 782 | status.raise(); |
783 | qApp->processEvents(); | 783 | qApp->processEvents(); |
784 | #if 0 | 784 | #if 0 |
785 | static char*cp; | 785 | static char*cp; |
786 | static INI_Section *cfg = NULL; | 786 | static INI_Section *cfg = NULL; |
787 | cfg=GSM_FindGammuRC(); | 787 | cfg=GSM_FindGammuRC(); |
788 | int i; | 788 | int i; |
789 | for (i = 0; i <= MAX_CONFIG_NUM; i++) { | 789 | for (i = 0; i <= MAX_CONFIG_NUM; i++) { |
790 | if (cfg!=NULL) { | 790 | if (cfg!=NULL) { |
791 | cp = (char *)INI_GetValue(cfg, (unsigned char*) "gammu", (unsigned char*)"gammucoding", false); | 791 | cp = (char *)INI_GetValue(cfg, (unsigned char*) "gammu", (unsigned char*)"gammucoding", false); |
792 | if (cp) di.coding = cp; | 792 | if (cp) di.coding = cp; |
793 | 793 | ||
794 | s.Config[i].Localize = (char *)INI_GetValue(cfg, (unsigned char*) "gammu", (unsigned char*) "gammuloc", false); | 794 | s.Config[i].Localize = (char *)INI_GetValue(cfg, (unsigned char*) "gammu", (unsigned char*) "gammuloc", false); |
795 | if (s.Config[i].Localize) { | 795 | if (s.Config[i].Localize) { |
796 | s.msg=INI_ReadFile(s.Config[i].Localize, true); | 796 | s.msg=INI_ReadFile(s.Config[i].Localize, true); |
797 | } else { | 797 | } else { |
798 | #if !defined(WIN32) && defined(LOCALE_PATH) | 798 | #if !defined(WIN32) && defined(LOCALE_PATH) |
799 | locale = setlocale(LC_MESSAGES, NULL); | 799 | locale = setlocale(LC_MESSAGES, NULL); |
800 | if (locale != NULL) { | 800 | if (locale != NULL) { |
801 | snprintf(locale_file, 200, "%s/gammu_%c%c.txt", | 801 | snprintf(locale_file, 200, "%s/gammu_%c%c.txt", |
802 | LOCALE_PATH, | 802 | LOCALE_PATH, |
803 | tolower(locale[0]), | 803 | tolower(locale[0]), |
804 | tolower(locale[1])); | 804 | tolower(locale[1])); |
805 | s.msg = INI_ReadFile(locale_file, true); | 805 | s.msg = INI_ReadFile(locale_file, true); |
806 | } | 806 | } |
807 | #endif | 807 | #endif |
808 | } | 808 | } |
809 | } | 809 | } |
810 | 810 | ||
811 | /* Wanted user specific configuration? */ | 811 | /* Wanted user specific configuration? */ |
812 | 812 | ||
813 | if (!GSM_ReadConfig(cfg, &s.Config[i], i) && i != 0) break; | 813 | if (!GSM_ReadConfig(cfg, &s.Config[i], i) && i != 0) break; |
814 | 814 | ||
815 | s.ConfigNum++; | 815 | s.ConfigNum++; |
816 | 816 | ||
817 | /* We want to use only one file descriptor for global and state machine debug output */ | 817 | /* We want to use only one file descriptor for global and state machine debug output */ |
818 | s.Config[i].UseGlobalDebugFile = true; | 818 | s.Config[i].UseGlobalDebugFile = true; |
819 | 819 | ||
820 | 820 | ||
821 | 821 | ||
822 | /* We wanted to read just user specified configuration. */ | 822 | /* We wanted to read just user specified configuration. */ |
823 | {break;} | 823 | {break;} |
824 | } | 824 | } |
825 | 825 | ||
826 | #endif | 826 | #endif |
827 | int error=initDevice(&s); | 827 | int error=initDevice(&s); |
828 | qDebug("GSM Init %d (no error is %d)", error, ERR_NONE); | 828 | qDebug("GSM Init %d (no error is %d)", error, ERR_NONE); |
829 | if ( error != ERR_NONE ) | 829 | if ( error != ERR_NONE ) |
830 | return false; | 830 | return false; |
831 | GSM_Phone_Functions*Phone; | 831 | GSM_Phone_Functions*Phone; |
832 | GSM_CalendarEntrynote; | 832 | GSM_CalendarEntrynote; |
833 | bool start = true; | 833 | bool start = true; |
834 | Phone=s.Phone.Functions; | 834 | Phone=s.Phone.Functions; |
835 | bool gshutdown = false; | 835 | bool gshutdown = false; |
836 | PhoneParser handler( calendar, mProfileName ); | 836 | PhoneParser handler( calendar, mProfileName ); |
837 | int ccc = 0; | 837 | int ccc = 0; |
838 | QString message = i18n("Processing event # "); | 838 | QString message = i18n("Processing event # "); |
839 | int procCount = 0; | 839 | int procCount = 0; |
840 | qDebug("Debug: only 10 calender items are downloaded "); | 840 | qDebug("Debug: only 10 calender items are downloaded "); |
841 | while (!gshutdown && ccc++ < 10) { | 841 | while (!gshutdown && ccc++ < 10) { |
842 | status.setText ( message + QString::number ( ++procCount ) ); | 842 | status.setText ( message + QString::number ( ++procCount ) ); |
843 | qApp->processEvents(); | 843 | qApp->processEvents(); |
844 | qDebug("readEvent %d ", ccc); | 844 | qDebug("readEvent %d ", ccc); |
845 | error=Phone->GetNextCalendar(&s,¬e,start); | 845 | error=Phone->GetNextCalendar(&s,¬e,start); |
846 | if (error == ERR_EMPTY) break; | 846 | if (error == ERR_EMPTY) break; |
847 | start = false; | 847 | start = false; |
848 | handler.readEvent( existingCal, ¬e ); | 848 | handler.readEvent( existingCal, ¬e ); |
849 | } | 849 | } |
850 | 850 | ||
851 | start = true; | 851 | start = true; |
852 | GSM_ToDoEntry ToDo; | 852 | GSM_ToDoEntry ToDo; |
853 | ccc = 0; | 853 | ccc = 0; |
854 | message = i18n("Processing todo # "); | 854 | message = i18n("Processing todo # "); |
855 | procCount = 0; | 855 | procCount = 0; |
856 | while (!gshutdown) { | 856 | while (!gshutdown) { |
857 | status.setText ( message + QString::number ( ++procCount ) ); | 857 | status.setText ( message + QString::number ( ++procCount ) ); |
858 | qApp->processEvents(); | 858 | qApp->processEvents(); |
859 | error = Phone->GetNextToDo(&s, &ToDo, start); | 859 | error = Phone->GetNextToDo(&s, &ToDo, start); |
860 | if (error == ERR_EMPTY) break; | 860 | if (error == ERR_EMPTY) break; |
861 | start = false; | 861 | start = false; |
862 | qDebug("ReadTodo %d ", ++ccc); | 862 | qDebug("ReadTodo %d ", ++ccc); |
863 | handler.readTodo( existingCal, &ToDo, &s); | 863 | handler.readTodo( existingCal, &ToDo, &s); |
864 | 864 | ||
865 | } | 865 | } |
866 | 866 | ||
867 | error=GSM_TerminateConnection(&s); | 867 | error=GSM_TerminateConnection(&s); |
868 | 868 | ||
869 | return true; | 869 | return true; |
870 | } | 870 | } |
871 | void PhoneFormat::event2GSM( Event* ev, GSM_CalendarEntry*Note ) | 871 | void PhoneFormat::event2GSM( Event* ev, GSM_CalendarEntry*Note ) |
872 | { | 872 | { |
873 | 873 | QString eText = vfconverter.eventToString( ev ); | |
874 | int pos = 0; | ||
875 | GSM_ToDoEntry dummy; | ||
876 | GSM_DecodeVCALENDAR_VTODO( (unsigned char*)eText.latin1(), &pos, Note , &dummy, Nokia_VCalendar, Nokia_VToDo ); | ||
874 | } | 877 | } |
875 | void PhoneFormat::todo2GSM( Todo* todo, GSM_ToDoEntry *gsm ) | 878 | void PhoneFormat::todo2GSM( Todo* todo, GSM_ToDoEntry *gsmTodo ) |
876 | { | 879 | { |
877 | #if 0 | 880 | QString tText = vfconverter.todoToString( todo ); |
878 | QStringList list; | 881 | int pos = 0; |
879 | list.append( QString::number( todo->zaurusId() ) ); | 882 | GSM_CalendarEntry dummy; |
880 | list.append( todo->categories().join(",") ); | 883 | GSM_DecodeVCALENDAR_VTODO( (unsigned char*)tText.latin1(), &pos, &dummy, gsmTodo, Nokia_VCalendar, Nokia_VToDo ); |
881 | |||
882 | if ( todo->hasStartDate() ) { | ||
883 | list.append( dtToString( todo->dtStart()) ); | ||
884 | } else | ||
885 | list.append( QString() ); | ||
886 | |||
887 | if ( todo->hasDueDate() ) { | ||
888 | QTime tim; | ||
889 | if ( todo->doesFloat()) { | ||
890 | list.append( dtToString( QDateTime(todo->dtDue().date(),QTime( 0,0,0 )), false)) ; | ||
891 | } else { | ||
892 | list.append( dtToString(todo->dtDue() ) ); | ||
893 | } | ||
894 | } else | ||
895 | list.append( QString() ); | ||
896 | |||
897 | if ( todo->isCompleted() ) { | ||
898 | list.append( dtToString( todo->completed()) ); | ||
899 | list.append( "0" ); // yes 0 == completed | ||
900 | } else { | ||
901 | list.append( dtToString( todo->completed()) ); | ||
902 | list.append( "1" ); | ||
903 | } | ||
904 | list.append( QString::number( todo->priority() )); | ||
905 | if( ! todo->summary().isEmpty() ) | ||
906 | list.append( todo->summary() ); | ||
907 | else | ||
908 | list.append( "" ); | ||
909 | if (! todo->description().isEmpty() ) | ||
910 | list.append( todo->description() ); | ||
911 | else | ||
912 | list.append( "" ); | ||
913 | for(QStringList::Iterator it=list.begin(); | ||
914 | it!=list.end(); ++it){ | ||
915 | QString& s = (*it); | ||
916 | s.replace(QRegExp("\""), "\"\""); | ||
917 | if(s.contains(QRegExp("[,\"\r\n]")) || s.stripWhiteSpace() != s){ | ||
918 | s.prepend('\"'); | ||
919 | s.append('\"'); | ||
920 | } else if(s.isEmpty() && !s.isNull()){ | ||
921 | s = "\"\""; | ||
922 | } | ||
923 | } | ||
924 | return list.join(","); | ||
925 | #endif | ||
926 | } | 884 | } |
927 | void PhoneFormat::afterSave( Incidence* inc) | 885 | void PhoneFormat::afterSave( Incidence* inc) |
928 | { | 886 | { |
929 | uint csum; | 887 | uint csum; |
930 | if ( inc->type() == "Event") | 888 | if ( inc->type() == "Event") |
931 | csum = PhoneFormat::getCsumEvent( (Event*) inc ); | 889 | csum = PhoneFormat::getCsumEvent( (Event*) inc ); |
932 | else | 890 | else |
933 | csum = PhoneFormat::getCsumTodo( (Todo*) inc ); | 891 | csum = PhoneFormat::getCsumTodo( (Todo*) inc ); |
934 | inc->setCsum( mProfileName, QString::number( csum )); | 892 | inc->setCsum( mProfileName, QString::number( csum )); |
935 | inc->setTempSyncStat( SYNC_TEMPSTATE_NEW_ID ); | 893 | inc->setTempSyncStat( SYNC_TEMPSTATE_NEW_ID ); |
936 | 894 | ||
937 | } | 895 | } |
938 | bool PhoneFormat::save( Calendar *calendar) | 896 | bool PhoneFormat::save( Calendar *calendar) |
939 | { | 897 | { |
940 | GSM_StateMachines; | 898 | GSM_StateMachines; |
941 | qDebug(" save "); | 899 | qDebug(" save "); |
942 | s.opened = false; | 900 | s.opened = false; |
943 | s.msg = NULL; | 901 | s.msg = NULL; |
944 | s.ConfigNum = 0; | 902 | s.ConfigNum = 0; |
945 | QLabel status ( i18n("Writing data. Opening device ..."), 0 ); | 903 | QLabel status ( i18n("Writing data. Opening device ..."), 0 ); |
946 | int w = status.sizeHint().width()+20 ; | 904 | int w = status.sizeHint().width()+20 ; |
947 | if ( w < 200 ) w = 200; | 905 | if ( w < 200 ) w = 200; |
948 | int h = status.sizeHint().height()+20 ; | 906 | int h = status.sizeHint().height()+20 ; |
949 | int dw = QApplication::desktop()->width(); | 907 | int dw = QApplication::desktop()->width(); |
950 | int dh = QApplication::desktop()->height(); | 908 | int dh = QApplication::desktop()->height(); |
951 | status.setCaption(i18n("Writing Phone Data") ); | 909 | status.setCaption(i18n("Writing Phone Data") ); |
952 | status.setGeometry( (dw-w)/2, (dh - h )/2 ,w,h ); | 910 | status.setGeometry( (dw-w)/2, (dh - h )/2 ,w,h ); |
953 | status.show(); | 911 | status.show(); |
954 | status.raise(); | 912 | status.raise(); |
955 | qApp->processEvents(); | 913 | qApp->processEvents(); |
956 | 914 | ||
957 | int error=initDevice(&s); | 915 | int error=initDevice(&s); |
958 | qDebug("GSM Init %d (no error is %d)", error, ERR_NONE); | 916 | qDebug("GSM Init %d (no error is %d)", error, ERR_NONE); |
959 | if ( error != ERR_NONE ) | 917 | if ( error != ERR_NONE ) |
960 | return false; | 918 | return false; |
961 | GSM_Phone_Functions*Phone; | 919 | GSM_Phone_Functions*Phone; |
962 | GSM_CalendarEntryNote; | 920 | GSM_CalendarEntryNote; |
963 | bool start = true; | 921 | bool start = true; |
964 | Phone=s.Phone.Functions; | 922 | Phone=s.Phone.Functions; |
965 | bool gshutdown = false; | 923 | bool gshutdown = false; |
966 | QPtrList<Event> er = calendar->rawEvents(); | 924 | QPtrList<Event> er = calendar->rawEvents(); |
967 | Event* ev = er.first(); | 925 | Event* ev = er.first(); |
968 | QString message = i18n("Processing event # "); | 926 | QString message = i18n("Processing event # "); |
969 | int procCount = 0; | 927 | int procCount = 0; |
970 | while ( ev ) { | 928 | while ( ev ) { |
971 | //qDebug("i %d ", ++i); | 929 | //qDebug("i %d ", ++i); |
972 | if ( ev->tempSyncStat() != SYNC_TEMPSTATE_NEW_EXTERNAL ) { // event was changed during sync or is a new one | 930 | if ( ev->tempSyncStat() != SYNC_TEMPSTATE_NEW_EXTERNAL ) { // event was changed during sync or is a new one |
973 | 931 | ||
974 | status.setText ( message + QString::number ( ++procCount ) ); | 932 | status.setText ( message + QString::number ( ++procCount ) ); |
975 | qApp->processEvents(); | 933 | qApp->processEvents(); |
976 | event2GSM( ev, &Note ); | 934 | event2GSM( ev, &Note ); |
977 | if ( ev->tempSyncStat() == SYNC_TEMPSTATE_DELETE ) { // delete | 935 | if ( ev->tempSyncStat() == SYNC_TEMPSTATE_DELETE ) { // delete |
978 | error = Phone->DeleteCalendar(&s, &Note); | 936 | error = Phone->DeleteCalendar(&s, &Note); |
979 | } | 937 | } |
980 | else if ( ev->getID(mProfileName).isEmpty() ) { // add new | 938 | else if ( ev->getID(mProfileName).isEmpty() ) { // add new |
981 | // we have to do this later after deleting | 939 | // we have to do this later after deleting |
982 | 940 | ||
983 | } | 941 | } |
984 | else { // change existing | 942 | else { // change existing |
985 | error = Phone->SetCalendar(&s, &Note); | 943 | error = Phone->SetCalendar(&s, &Note); |
986 | } | 944 | } |
987 | } | 945 | } |
988 | ev = er.next(); | 946 | ev = er.next(); |
989 | } | 947 | } |
990 | ev = er.first(); | 948 | ev = er.first(); |
991 | // pending get empty slots | 949 | // pending get empty slots |
992 | while ( ev ) { | 950 | while ( ev ) { |
993 | if ( ev->tempSyncStat() != SYNC_TEMPSTATE_NEW_EXTERNAL && ev->tempSyncStat() != SYNC_TEMPSTATE_DELETE) { | 951 | if ( ev->tempSyncStat() != SYNC_TEMPSTATE_NEW_EXTERNAL && ev->tempSyncStat() != SYNC_TEMPSTATE_DELETE) { |
994 | if ( ev->getID(mProfileName).isEmpty() ) { | 952 | if ( ev->getID(mProfileName).isEmpty() ) { |
995 | status.setText ( message + QString::number ( ++procCount ) ); | 953 | status.setText ( message + QString::number ( ++procCount ) ); |
996 | qApp->processEvents(); | 954 | qApp->processEvents(); |
997 | //int newID ;//= pending | 955 | //int newID ;//= pending |
998 | //ev->setID(mProfileName, QString::number( newID )); | 956 | //ev->setID(mProfileName, QString::number( newID )); |
999 | event2GSM( ev, &Note ); | 957 | event2GSM( ev, &Note ); |
1000 | Note.Location = 0; | 958 | Note.Location = 0; |
1001 | error = Phone->AddCalendar(&s, &Note); | 959 | error = Phone->AddCalendar(&s, &Note); |
1002 | ev->setID( mProfileName, QString::number( Note.Location ) ); | 960 | ev->setID( mProfileName, QString::number( Note.Location ) ); |
1003 | qDebug("New Calendar. Location %d ",Note.Location ); | 961 | qDebug("New Calendar. Location %d ",Note.Location ); |
1004 | afterSave( ev ); | 962 | afterSave( ev ); |
1005 | } else { | 963 | } else { |
1006 | afterSave( ev ); // setting temp sync stat for changed items | 964 | afterSave( ev ); // setting temp sync stat for changed items |
1007 | } | 965 | } |
1008 | } | 966 | } |
1009 | ev = er.next(); | 967 | ev = er.next(); |
1010 | } | 968 | } |
1011 | GSM_ToDoEntry ToDoEntry; | 969 | GSM_ToDoEntry ToDoEntry; |
1012 | QPtrList<Todo> tl = calendar->rawTodos(); | 970 | QPtrList<Todo> tl = calendar->rawTodos(); |
1013 | Todo* to = tl.first(); | 971 | Todo* to = tl.first(); |
1014 | 972 | ||
1015 | message = i18n("Processing todo # "); | 973 | message = i18n("Processing todo # "); |
1016 | procCount = 0; | 974 | procCount = 0; |
1017 | while ( to ) { | 975 | while ( to ) { |
1018 | if ( to->tempSyncStat() != SYNC_TEMPSTATE_NEW_EXTERNAL ) { | 976 | if ( to->tempSyncStat() != SYNC_TEMPSTATE_NEW_EXTERNAL ) { |
1019 | status.setText ( message + QString::number ( ++procCount ) ); | 977 | status.setText ( message + QString::number ( ++procCount ) ); |
1020 | qApp->processEvents(); | 978 | qApp->processEvents(); |
1021 | todo2GSM( to, &ToDoEntry ); | 979 | todo2GSM( to, &ToDoEntry ); |
1022 | if ( to->tempSyncStat() == SYNC_TEMPSTATE_DELETE ) { // delete | 980 | if ( to->tempSyncStat() == SYNC_TEMPSTATE_DELETE ) { // delete |
1023 | error=Phone->DeleteToDo(&s,&ToDoEntry); | 981 | error=Phone->DeleteToDo(&s,&ToDoEntry); |
1024 | } | 982 | } |
1025 | else if ( to->getID("Sharp_DTM").isEmpty() ) { // add new | 983 | else if ( to->getID("Sharp_DTM").isEmpty() ) { // add new |
1026 | ; | 984 | ; |
1027 | } | 985 | } |
1028 | else { // change existing | 986 | else { // change existing |
1029 | error=Phone->SetToDo(&s,&ToDoEntry); | 987 | error=Phone->SetToDo(&s,&ToDoEntry); |
1030 | } | 988 | } |
1031 | } | 989 | } |
1032 | to = tl.next(); | 990 | to = tl.next(); |
1033 | } | 991 | } |
1034 | 992 | ||
1035 | // pending get empty slots | 993 | // pending get empty slots |
1036 | to = tl.first(); | 994 | to = tl.first(); |
1037 | while ( to ) { | 995 | while ( to ) { |
1038 | if ( to->tempSyncStat() != SYNC_TEMPSTATE_NEW_EXTERNAL && to->tempSyncStat() != SYNC_TEMPSTATE_DELETE) { | 996 | if ( to->tempSyncStat() != SYNC_TEMPSTATE_NEW_EXTERNAL && to->tempSyncStat() != SYNC_TEMPSTATE_DELETE) { |
1039 | if ( to->getID(mProfileName).isEmpty() ) { | 997 | if ( to->getID(mProfileName).isEmpty() ) { |
1040 | status.setText ( message + QString::number ( ++procCount ) ); | 998 | status.setText ( message + QString::number ( ++procCount ) ); |
1041 | qApp->processEvents(); | 999 | qApp->processEvents(); |
1042 | //int newID ;//= pending | 1000 | //int newID ;//= pending |
1043 | //to->setID(mProfileName, QString::number( newID )); | 1001 | //to->setID(mProfileName, QString::number( newID )); |
1044 | todo2GSM( to, &ToDoEntry ); | 1002 | todo2GSM( to, &ToDoEntry ); |
1045 | ToDoEntry.Location = 0; | 1003 | ToDoEntry.Location = 0; |
1046 | error=Phone->AddToDo(&s,&ToDoEntry); | 1004 | error=Phone->AddToDo(&s,&ToDoEntry); |
1047 | to->setID(mProfileName, QString::number( ToDoEntry.Location )); | 1005 | to->setID(mProfileName, QString::number( ToDoEntry.Location )); |
1048 | afterSave( to ); | 1006 | afterSave( to ); |
1049 | qDebug("New Todo. Location %d ",ToDoEntry.Location ); | 1007 | qDebug("New Todo. Location %d ",ToDoEntry.Location ); |
1050 | } else { | 1008 | } else { |
1051 | afterSave( to ); | 1009 | afterSave( to ); |
1052 | } | 1010 | } |
1053 | } | 1011 | } |
diff --git a/libkcal/phoneformat.h b/libkcal/phoneformat.h index 7b7dd04..33b2091 100644 --- a/libkcal/phoneformat.h +++ b/libkcal/phoneformat.h | |||
@@ -1,65 +1,67 @@ | |||
1 | /* | 1 | /* |
2 | This file is part of libkcal. | 2 | This file is part of libkcal. |
3 | 3 | ||
4 | Copyright (c) 2003 Cornelius Schumacher <schumacher@kde.org> | 4 | Copyright (c) 2003 Cornelius Schumacher <schumacher@kde.org> |
5 | 5 | ||
6 | This library is free software; you can redistribute it and/or | 6 | This library is free software; you can redistribute it and/or |
7 | modify it under the terms of the GNU Library General Public | 7 | modify it under the terms of the GNU Library General Public |
8 | License as published by the Free Software Foundation; either | 8 | License as published by the Free Software Foundation; either |
9 | version 2 of the License, or (at your option) any later version. | 9 | version 2 of the License, or (at your option) any later version. |
10 | 10 | ||
11 | This library is distributed in the hope that it will be useful, | 11 | This library is distributed in the hope that it will be useful, |
12 | but WITHOUT ANY WARRANTY; without even the implied warranty of | 12 | but WITHOUT ANY WARRANTY; without even the implied warranty of |
13 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | 13 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
14 | Library General Public License for more details. | 14 | Library General Public License for more details. |
15 | 15 | ||
16 | You should have received a copy of the GNU Library General Public License | 16 | You should have received a copy of the GNU Library General Public License |
17 | along with this library; see the file COPYING.LIB. If not, write to | 17 | along with this library; see the file COPYING.LIB. If not, write to |
18 | the Free Software Foundation, Inc., 59 Temple Place - Suite 330, | 18 | the Free Software Foundation, Inc., 59 Temple Place - Suite 330, |
19 | Boston, MA 02111-1307, USA. | 19 | Boston, MA 02111-1307, USA. |
20 | */ | 20 | */ |
21 | #ifndef PHONEFORMAT_H | 21 | #ifndef PHONEFORMAT_H |
22 | #define PHONEFORMAT_H | 22 | #define PHONEFORMAT_H |
23 | 23 | ||
24 | #include <qstring.h> | 24 | #include <qstring.h> |
25 | 25 | ||
26 | #include "scheduler.h" | 26 | #include "scheduler.h" |
27 | 27 | ||
28 | #include "vcalformat.h" | ||
28 | #include "calformat.h" | 29 | #include "calformat.h" |
29 | extern "C" { | 30 | extern "C" { |
30 | #include "../gammu/emb/common/gammu.h" | 31 | #include "../gammu/emb/common/gammu.h" |
31 | } | 32 | } |
32 | namespace KCal { | 33 | namespace KCal { |
33 | 34 | ||
34 | /** | 35 | /** |
35 | This class implements the calendar format used by Phone. | 36 | This class implements the calendar format used by Phone. |
36 | */ | 37 | */ |
37 | class Event; | 38 | class Event; |
38 | class Todo; | 39 | class Todo; |
39 | class PhoneFormat : public QObject { | 40 | class PhoneFormat : public QObject { |
40 | public: | 41 | public: |
41 | /** Create new iCalendar format. */ | 42 | /** Create new iCalendar format. */ |
42 | PhoneFormat(QString profileName, QString device,QString connection, QString model); | 43 | PhoneFormat(QString profileName, QString device,QString connection, QString model); |
43 | virtual ~PhoneFormat(); | 44 | virtual ~PhoneFormat(); |
44 | 45 | ||
45 | bool load( Calendar * ,Calendar * ); | 46 | bool load( Calendar * ,Calendar * ); |
46 | bool save( Calendar * ); | 47 | bool save( Calendar * ); |
47 | bool fromString( Calendar *, const QString & ); | 48 | bool fromString( Calendar *, const QString & ); |
48 | QString toString( Calendar * ); | 49 | QString toString( Calendar * ); |
49 | static ulong getCsum( const QStringList & ); | 50 | static ulong getCsum( const QStringList & ); |
50 | static ulong getCsumTodo( Todo* to ); | 51 | static ulong getCsumTodo( Todo* to ); |
51 | static ulong getCsumEvent( Event* ev ); | 52 | static ulong getCsumEvent( Event* ev ); |
52 | private: | 53 | private: |
54 | VCalFormat vfconverter; | ||
53 | void event2GSM( Event* ev, GSM_CalendarEntry*Note ); | 55 | void event2GSM( Event* ev, GSM_CalendarEntry*Note ); |
54 | void todo2GSM( Todo* ev, GSM_ToDoEntry *ToDo ); | 56 | void todo2GSM( Todo* ev, GSM_ToDoEntry *ToDo ); |
55 | int initDevice(GSM_StateMachine *s); | 57 | int initDevice(GSM_StateMachine *s); |
56 | QString getEventString( Event* ); | 58 | QString getEventString( Event* ); |
57 | QString getTodoString( Todo* ); | 59 | QString getTodoString( Todo* ); |
58 | QString dtToGSM( const QDateTime& dt, bool useTZ = true ); | 60 | QString dtToGSM( const QDateTime& dt, bool useTZ = true ); |
59 | QString mProfileName, mDevice, mConnection, mModel; | 61 | QString mProfileName, mDevice, mConnection, mModel; |
60 | void afterSave( Incidence* ); | 62 | void afterSave( Incidence* ); |
61 | }; | 63 | }; |
62 | 64 | ||
63 | } | 65 | } |
64 | 66 | ||
65 | #endif | 67 | #endif |
diff --git a/libkcal/vcalformat.cpp b/libkcal/vcalformat.cpp index 72a781a..1167e58 100644 --- a/libkcal/vcalformat.cpp +++ b/libkcal/vcalformat.cpp | |||
@@ -40,256 +40,275 @@ | |||
40 | #include "calendar.h" | 40 | #include "calendar.h" |
41 | 41 | ||
42 | #include "vcalformat.h" | 42 | #include "vcalformat.h" |
43 | 43 | ||
44 | using namespace KCal; | 44 | using namespace KCal; |
45 | 45 | ||
46 | VCalFormat::VCalFormat() | 46 | VCalFormat::VCalFormat() |
47 | { | 47 | { |
48 | } | 48 | } |
49 | 49 | ||
50 | VCalFormat::~VCalFormat() | 50 | VCalFormat::~VCalFormat() |
51 | { | 51 | { |
52 | } | 52 | } |
53 | 53 | ||
54 | bool VCalFormat::load(Calendar *calendar, const QString &fileName) | 54 | bool VCalFormat::load(Calendar *calendar, const QString &fileName) |
55 | { | 55 | { |
56 | mCalendar = calendar; | 56 | mCalendar = calendar; |
57 | 57 | ||
58 | clearException(); | 58 | clearException(); |
59 | 59 | ||
60 | kdDebug(5800) << "VCalFormat::load() " << fileName << endl; | 60 | kdDebug(5800) << "VCalFormat::load() " << fileName << endl; |
61 | 61 | ||
62 | VObject *vcal = 0; | 62 | VObject *vcal = 0; |
63 | 63 | ||
64 | // this is not necessarily only 1 vcal. Could be many vcals, or include | 64 | // this is not necessarily only 1 vcal. Could be many vcals, or include |
65 | // a vcard... | 65 | // a vcard... |
66 | vcal = Parse_MIME_FromFileName(const_cast<char *>(QFile::encodeName(fileName).data())); | 66 | vcal = Parse_MIME_FromFileName(const_cast<char *>(QFile::encodeName(fileName).data())); |
67 | 67 | ||
68 | if (!vcal) { | 68 | if (!vcal) { |
69 | setException(new ErrorFormat(ErrorFormat::CalVersionUnknown)); | 69 | setException(new ErrorFormat(ErrorFormat::CalVersionUnknown)); |
70 | return FALSE; | 70 | return FALSE; |
71 | } | 71 | } |
72 | 72 | ||
73 | // any other top-level calendar stuff should be added/initialized here | 73 | // any other top-level calendar stuff should be added/initialized here |
74 | 74 | ||
75 | // put all vobjects into their proper places | 75 | // put all vobjects into their proper places |
76 | populate(vcal); | 76 | populate(vcal); |
77 | 77 | ||
78 | // clean up from vcal API stuff | 78 | // clean up from vcal API stuff |
79 | cleanVObjects(vcal); | 79 | cleanVObjects(vcal); |
80 | cleanStrTbl(); | 80 | cleanStrTbl(); |
81 | 81 | ||
82 | return true; | 82 | return true; |
83 | } | 83 | } |
84 | 84 | ||
85 | 85 | ||
86 | bool VCalFormat::save(Calendar *calendar, const QString &fileName) | 86 | bool VCalFormat::save(Calendar *calendar, const QString &fileName) |
87 | { | 87 | { |
88 | mCalendar = calendar; | 88 | mCalendar = calendar; |
89 | 89 | ||
90 | QString tmpStr; | 90 | QString tmpStr; |
91 | VObject *vcal, *vo; | 91 | VObject *vcal, *vo; |
92 | 92 | ||
93 | kdDebug(5800) << "VCalFormat::save(): " << fileName << endl; | 93 | kdDebug(5800) << "VCalFormat::save(): " << fileName << endl; |
94 | 94 | ||
95 | vcal = newVObject(VCCalProp); | 95 | vcal = newVObject(VCCalProp); |
96 | 96 | ||
97 | // addPropValue(vcal,VCLocationProp, "0.0"); | 97 | // addPropValue(vcal,VCLocationProp, "0.0"); |
98 | addPropValue(vcal,VCProdIdProp, productId()); | 98 | addPropValue(vcal,VCProdIdProp, productId()); |
99 | tmpStr = mCalendar->getTimeZoneStr(); | 99 | tmpStr = mCalendar->getTimeZoneStr(); |
100 | //qDebug("mCalendar->getTimeZoneStr() %s",tmpStr.latin1() ); | 100 | //qDebug("mCalendar->getTimeZoneStr() %s",tmpStr.latin1() ); |
101 | addPropValue(vcal,VCTimeZoneProp, tmpStr.local8Bit()); | 101 | addPropValue(vcal,VCTimeZoneProp, tmpStr.local8Bit()); |
102 | addPropValue(vcal,VCVersionProp, _VCAL_VERSION); | 102 | addPropValue(vcal,VCVersionProp, _VCAL_VERSION); |
103 | 103 | ||
104 | // TODO STUFF | 104 | // TODO STUFF |
105 | QPtrList<Todo> todoList = mCalendar->rawTodos(); | 105 | QPtrList<Todo> todoList = mCalendar->rawTodos(); |
106 | QPtrListIterator<Todo> qlt(todoList); | 106 | QPtrListIterator<Todo> qlt(todoList); |
107 | for (; qlt.current(); ++qlt) { | 107 | for (; qlt.current(); ++qlt) { |
108 | vo = eventToVTodo(qlt.current()); | 108 | vo = eventToVTodo(qlt.current()); |
109 | addVObjectProp(vcal, vo); | 109 | addVObjectProp(vcal, vo); |
110 | } | 110 | } |
111 | 111 | ||
112 | // EVENT STUFF | 112 | // EVENT STUFF |
113 | QPtrList<Event> events = mCalendar->rawEvents(); | 113 | QPtrList<Event> events = mCalendar->rawEvents(); |
114 | Event *ev; | 114 | Event *ev; |
115 | for(ev=events.first();ev;ev=events.next()) { | 115 | for(ev=events.first();ev;ev=events.next()) { |
116 | vo = eventToVEvent(ev); | 116 | vo = eventToVEvent(ev); |
117 | addVObjectProp(vcal, vo); | 117 | addVObjectProp(vcal, vo); |
118 | } | 118 | } |
119 | 119 | ||
120 | writeVObjectToFile(QFile::encodeName(fileName).data() ,vcal); | 120 | writeVObjectToFile(QFile::encodeName(fileName).data() ,vcal); |
121 | cleanVObjects(vcal); | 121 | cleanVObjects(vcal); |
122 | cleanStrTbl(); | 122 | cleanStrTbl(); |
123 | 123 | ||
124 | if (QFile::exists(fileName)) { | 124 | if (QFile::exists(fileName)) { |
125 | kdDebug(5800) << "No error" << endl; | 125 | kdDebug(5800) << "No error" << endl; |
126 | return true; | 126 | return true; |
127 | } else { | 127 | } else { |
128 | kdDebug(5800) << "Error" << endl; | 128 | kdDebug(5800) << "Error" << endl; |
129 | return false; // error | 129 | return false; // error |
130 | } | 130 | } |
131 | } | 131 | } |
132 | 132 | ||
133 | bool VCalFormat::fromString( Calendar *calendar, const QString &text ) | 133 | bool VCalFormat::fromString( Calendar *calendar, const QString &text ) |
134 | { | 134 | { |
135 | // TODO: Factor out VCalFormat::fromString() | 135 | // TODO: Factor out VCalFormat::fromString() |
136 | 136 | ||
137 | QCString data = text.utf8(); | 137 | QCString data = text.utf8(); |
138 | 138 | ||
139 | if ( !data.size() ) return false; | 139 | if ( !data.size() ) return false; |
140 | 140 | ||
141 | VObject *vcal = Parse_MIME( data.data(), data.size()); | 141 | VObject *vcal = Parse_MIME( data.data(), data.size()); |
142 | if ( !vcal ) return false; | 142 | if ( !vcal ) return false; |
143 | 143 | ||
144 | VObjectIterator i; | 144 | VObjectIterator i; |
145 | VObject *curvo; | 145 | VObject *curvo; |
146 | initPropIterator( &i, vcal ); | 146 | initPropIterator( &i, vcal ); |
147 | 147 | ||
148 | // we only take the first object. TODO: parse all incidences. | 148 | // we only take the first object. TODO: parse all incidences. |
149 | do { | 149 | do { |
150 | curvo = nextVObject( &i ); | 150 | curvo = nextVObject( &i ); |
151 | } while ( strcmp( vObjectName( curvo ), VCEventProp ) && | 151 | } while ( strcmp( vObjectName( curvo ), VCEventProp ) && |
152 | strcmp( vObjectName( curvo ), VCTodoProp ) ); | 152 | strcmp( vObjectName( curvo ), VCTodoProp ) ); |
153 | 153 | ||
154 | if ( strcmp( vObjectName( curvo ), VCEventProp ) == 0 ) { | 154 | if ( strcmp( vObjectName( curvo ), VCEventProp ) == 0 ) { |
155 | Event *event = VEventToEvent( curvo ); | 155 | Event *event = VEventToEvent( curvo ); |
156 | calendar->addEvent( event ); | 156 | calendar->addEvent( event ); |
157 | } else { | 157 | } else { |
158 | kdDebug(5800) << "VCalFormat::fromString(): Unknown object type." << endl; | 158 | kdDebug(5800) << "VCalFormat::fromString(): Unknown object type." << endl; |
159 | deleteVObject( vcal ); | 159 | deleteVObject( vcal ); |
160 | return false; | 160 | return false; |
161 | } | 161 | } |
162 | 162 | ||
163 | deleteVObject( vcal ); | 163 | deleteVObject( vcal ); |
164 | 164 | ||
165 | return true; | 165 | return true; |
166 | } | 166 | } |
167 | 167 | ||
168 | QString VCalFormat::eventToString( Event * event) | ||
169 | { | ||
170 | if ( !event ) return QString::null; | ||
171 | VObject *vevent = eventToVEvent( event ); | ||
172 | char *buf = writeMemVObject( 0, 0, vevent ); | ||
173 | QString result( buf ); | ||
174 | cleanVObject( vevent ); | ||
175 | return result; | ||
176 | } | ||
177 | QString VCalFormat::todoToString( Todo * todo ) | ||
178 | { | ||
179 | if ( !todo ) return QString::null; | ||
180 | VObject *vevent = eventToVTodo( todo ); | ||
181 | char *buf = writeMemVObject( 0, 0, vevent ); | ||
182 | QString result( buf ); | ||
183 | cleanVObject( vevent ); | ||
184 | return result; | ||
185 | } | ||
186 | |||
168 | QString VCalFormat::toString( Calendar *calendar ) | 187 | QString VCalFormat::toString( Calendar *calendar ) |
169 | { | 188 | { |
170 | // TODO: Factor out VCalFormat::asString() | 189 | // TODO: Factor out VCalFormat::asString() |
171 | 190 | ||
172 | VObject *vcal = newVObject(VCCalProp); | 191 | VObject *vcal = newVObject(VCCalProp); |
173 | 192 | ||
174 | addPropValue( vcal, VCProdIdProp, CalFormat::productId() ); | 193 | addPropValue( vcal, VCProdIdProp, CalFormat::productId() ); |
175 | QString tmpStr = mCalendar->getTimeZoneStr(); | 194 | QString tmpStr = mCalendar->getTimeZoneStr(); |
176 | addPropValue( vcal, VCTimeZoneProp, tmpStr.local8Bit() ); | 195 | addPropValue( vcal, VCTimeZoneProp, tmpStr.local8Bit() ); |
177 | addPropValue( vcal, VCVersionProp, _VCAL_VERSION ); | 196 | addPropValue( vcal, VCVersionProp, _VCAL_VERSION ); |
178 | 197 | ||
179 | // TODO: Use all data. | 198 | // TODO: Use all data. |
180 | QPtrList<Event> events = calendar->events(); | 199 | QPtrList<Event> events = calendar->events(); |
181 | Event *event = events.first(); | 200 | Event *event = events.first(); |
182 | if ( !event ) return QString::null; | 201 | if ( !event ) return QString::null; |
183 | 202 | ||
184 | VObject *vevent = eventToVEvent( event ); | 203 | VObject *vevent = eventToVEvent( event ); |
185 | 204 | ||
186 | addVObjectProp( vcal, vevent ); | 205 | addVObjectProp( vcal, vevent ); |
187 | 206 | ||
188 | char *buf = writeMemVObject( 0, 0, vcal ); | 207 | char *buf = writeMemVObject( 0, 0, vcal ); |
189 | 208 | ||
190 | QString result( buf ); | 209 | QString result( buf ); |
191 | 210 | ||
192 | cleanVObject( vcal ); | 211 | cleanVObject( vcal ); |
193 | 212 | ||
194 | return result; | 213 | return result; |
195 | } | 214 | } |
196 | 215 | ||
197 | VObject *VCalFormat::eventToVTodo(const Todo *anEvent) | 216 | VObject *VCalFormat::eventToVTodo(const Todo *anEvent) |
198 | { | 217 | { |
199 | VObject *vtodo; | 218 | VObject *vtodo; |
200 | QString tmpStr; | 219 | QString tmpStr; |
201 | QStringList tmpStrList; | 220 | QStringList tmpStrList; |
202 | 221 | ||
203 | vtodo = newVObject(VCTodoProp); | 222 | vtodo = newVObject(VCTodoProp); |
204 | 223 | ||
205 | // due date | 224 | // due date |
206 | if (anEvent->hasDueDate()) { | 225 | if (anEvent->hasDueDate()) { |
207 | tmpStr = qDateTimeToISO(anEvent->dtDue(), | 226 | tmpStr = qDateTimeToISO(anEvent->dtDue(), |
208 | !anEvent->doesFloat()); | 227 | !anEvent->doesFloat()); |
209 | addPropValue(vtodo, VCDueProp, tmpStr.local8Bit()); | 228 | addPropValue(vtodo, VCDueProp, tmpStr.local8Bit()); |
210 | } | 229 | } |
211 | 230 | ||
212 | // start date | 231 | // start date |
213 | if (anEvent->hasStartDate()) { | 232 | if (anEvent->hasStartDate()) { |
214 | tmpStr = qDateTimeToISO(anEvent->dtStart(), | 233 | tmpStr = qDateTimeToISO(anEvent->dtStart(), |
215 | !anEvent->doesFloat()); | 234 | !anEvent->doesFloat()); |
216 | addPropValue(vtodo, VCDTstartProp, tmpStr.local8Bit()); | 235 | addPropValue(vtodo, VCDTstartProp, tmpStr.local8Bit()); |
217 | } | 236 | } |
218 | 237 | ||
219 | // creation date | 238 | // creation date |
220 | tmpStr = qDateTimeToISO(anEvent->created()); | 239 | tmpStr = qDateTimeToISO(anEvent->created()); |
221 | addPropValue(vtodo, VCDCreatedProp, tmpStr.local8Bit()); | 240 | addPropValue(vtodo, VCDCreatedProp, tmpStr.local8Bit()); |
222 | 241 | ||
223 | // unique id | 242 | // unique id |
224 | addPropValue(vtodo, VCUniqueStringProp, | 243 | addPropValue(vtodo, VCUniqueStringProp, |
225 | anEvent->uid().local8Bit()); | 244 | anEvent->uid().local8Bit()); |
226 | 245 | ||
227 | // revision | 246 | // revision |
228 | tmpStr.sprintf("%i", anEvent->revision()); | 247 | tmpStr.sprintf("%i", anEvent->revision()); |
229 | addPropValue(vtodo, VCSequenceProp, tmpStr.local8Bit()); | 248 | addPropValue(vtodo, VCSequenceProp, tmpStr.local8Bit()); |
230 | 249 | ||
231 | // last modification date | 250 | // last modification date |
232 | tmpStr = qDateTimeToISO(anEvent->lastModified()); | 251 | tmpStr = qDateTimeToISO(anEvent->lastModified()); |
233 | addPropValue(vtodo, VCLastModifiedProp, tmpStr.local8Bit()); | 252 | addPropValue(vtodo, VCLastModifiedProp, tmpStr.local8Bit()); |
234 | 253 | ||
235 | // organizer stuff | 254 | // organizer stuff |
236 | tmpStr = "MAILTO:" + anEvent->organizer(); | 255 | tmpStr = "MAILTO:" + anEvent->organizer(); |
237 | addPropValue(vtodo, ICOrganizerProp, tmpStr.local8Bit()); | 256 | addPropValue(vtodo, ICOrganizerProp, tmpStr.local8Bit()); |
238 | 257 | ||
239 | // attendees | 258 | // attendees |
240 | if (anEvent->attendeeCount() != 0) { | 259 | if (anEvent->attendeeCount() != 0) { |
241 | QPtrList<Attendee> al = anEvent->attendees(); | 260 | QPtrList<Attendee> al = anEvent->attendees(); |
242 | QPtrListIterator<Attendee> ai(al); | 261 | QPtrListIterator<Attendee> ai(al); |
243 | Attendee *curAttendee; | 262 | Attendee *curAttendee; |
244 | 263 | ||
245 | for (; ai.current(); ++ai) { | 264 | for (; ai.current(); ++ai) { |
246 | curAttendee = ai.current(); | 265 | curAttendee = ai.current(); |
247 | if (!curAttendee->email().isEmpty() && | 266 | if (!curAttendee->email().isEmpty() && |
248 | !curAttendee->name().isEmpty()) | 267 | !curAttendee->name().isEmpty()) |
249 | tmpStr = "MAILTO:" + curAttendee->name() + " <" + | 268 | tmpStr = "MAILTO:" + curAttendee->name() + " <" + |
250 | curAttendee->email() + ">"; | 269 | curAttendee->email() + ">"; |
251 | else if (curAttendee->name().isEmpty()) | 270 | else if (curAttendee->name().isEmpty()) |
252 | tmpStr = "MAILTO: " + curAttendee->email(); | 271 | tmpStr = "MAILTO: " + curAttendee->email(); |
253 | else if (curAttendee->email().isEmpty()) | 272 | else if (curAttendee->email().isEmpty()) |
254 | tmpStr = "MAILTO: " + curAttendee->name(); | 273 | tmpStr = "MAILTO: " + curAttendee->name(); |
255 | else if (curAttendee->name().isEmpty() && | 274 | else if (curAttendee->name().isEmpty() && |
256 | curAttendee->email().isEmpty()) | 275 | curAttendee->email().isEmpty()) |
257 | kdDebug(5800) << "warning! this Event has an attendee w/o name or email!" << endl; | 276 | kdDebug(5800) << "warning! this Event has an attendee w/o name or email!" << endl; |
258 | VObject *aProp = addPropValue(vtodo, VCAttendeeProp, tmpStr.local8Bit()); | 277 | VObject *aProp = addPropValue(vtodo, VCAttendeeProp, tmpStr.local8Bit()); |
259 | addPropValue(aProp, VCRSVPProp, curAttendee->RSVP() ? "TRUE" : "FALSE"); | 278 | addPropValue(aProp, VCRSVPProp, curAttendee->RSVP() ? "TRUE" : "FALSE"); |
260 | addPropValue(aProp, VCStatusProp, writeStatus(curAttendee->status())); | 279 | addPropValue(aProp, VCStatusProp, writeStatus(curAttendee->status())); |
261 | } | 280 | } |
262 | } | 281 | } |
263 | 282 | ||
264 | // description BL: | 283 | // description BL: |
265 | if (!anEvent->description().isEmpty()) { | 284 | if (!anEvent->description().isEmpty()) { |
266 | VObject *d = addPropValue(vtodo, VCDescriptionProp, | 285 | VObject *d = addPropValue(vtodo, VCDescriptionProp, |
267 | anEvent->description().local8Bit()); | 286 | anEvent->description().local8Bit()); |
268 | if (anEvent->description().find('\n') != -1) | 287 | if (anEvent->description().find('\n') != -1) |
269 | addProp(d, VCQuotedPrintableProp); | 288 | addProp(d, VCQuotedPrintableProp); |
270 | } | 289 | } |
271 | 290 | ||
272 | // summary | 291 | // summary |
273 | if (!anEvent->summary().isEmpty()) | 292 | if (!anEvent->summary().isEmpty()) |
274 | addPropValue(vtodo, VCSummaryProp, anEvent->summary().local8Bit()); | 293 | addPropValue(vtodo, VCSummaryProp, anEvent->summary().local8Bit()); |
275 | 294 | ||
276 | if (!anEvent->location().isEmpty()) | 295 | if (!anEvent->location().isEmpty()) |
277 | addPropValue(vtodo, VCLocationProp, anEvent->location().local8Bit()); | 296 | addPropValue(vtodo, VCLocationProp, anEvent->location().local8Bit()); |
278 | 297 | ||
279 | // completed | 298 | // completed |
280 | // status | 299 | // status |
281 | // backward compatibility, KOrganizer used to interpret only these two values | 300 | // backward compatibility, KOrganizer used to interpret only these two values |
282 | addPropValue(vtodo, VCStatusProp, anEvent->isCompleted() ? "COMPLETED" : | 301 | addPropValue(vtodo, VCStatusProp, anEvent->isCompleted() ? "COMPLETED" : |
283 | "NEEDS_ACTION"); | 302 | "NEEDS_ACTION"); |
284 | // completion date | 303 | // completion date |
285 | if (anEvent->hasCompletedDate()) { | 304 | if (anEvent->hasCompletedDate()) { |
286 | tmpStr = qDateTimeToISO(anEvent->completed()); | 305 | tmpStr = qDateTimeToISO(anEvent->completed()); |
287 | addPropValue(vtodo, VCCompletedProp, tmpStr.local8Bit()); | 306 | addPropValue(vtodo, VCCompletedProp, tmpStr.local8Bit()); |
288 | } | 307 | } |
289 | 308 | ||
290 | // priority | 309 | // priority |
291 | tmpStr.sprintf("%i",anEvent->priority()); | 310 | tmpStr.sprintf("%i",anEvent->priority()); |
292 | addPropValue(vtodo, VCPriorityProp, tmpStr.local8Bit()); | 311 | addPropValue(vtodo, VCPriorityProp, tmpStr.local8Bit()); |
293 | 312 | ||
294 | // related event | 313 | // related event |
295 | if (anEvent->relatedTo()) { | 314 | if (anEvent->relatedTo()) { |
diff --git a/libkcal/vcalformat.h b/libkcal/vcalformat.h index d4cecbc..8490125 100644 --- a/libkcal/vcalformat.h +++ b/libkcal/vcalformat.h | |||
@@ -1,108 +1,110 @@ | |||
1 | /* | 1 | /* |
2 | This file is part of libkcal. | 2 | This file is part of libkcal. |
3 | Copyright (c) 1998 Preston Brown | 3 | Copyright (c) 1998 Preston Brown |
4 | Copyright (c) 2001 Cornelius Schumacher <schumacher@kde.org> | 4 | Copyright (c) 2001 Cornelius Schumacher <schumacher@kde.org> |
5 | 5 | ||
6 | This library is free software; you can redistribute it and/or | 6 | This library is free software; you can redistribute it and/or |
7 | modify it under the terms of the GNU Library General Public | 7 | modify it under the terms of the GNU Library General Public |
8 | License as published by the Free Software Foundation; either | 8 | License as published by the Free Software Foundation; either |
9 | version 2 of the License, or (at your option) any later version. | 9 | version 2 of the License, or (at your option) any later version. |
10 | 10 | ||
11 | This library is distributed in the hope that it will be useful, | 11 | This library is distributed in the hope that it will be useful, |
12 | but WITHOUT ANY WARRANTY; without even the implied warranty of | 12 | but WITHOUT ANY WARRANTY; without even the implied warranty of |
13 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | 13 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
14 | Library General Public License for more details. | 14 | Library General Public License for more details. |
15 | 15 | ||
16 | You should have received a copy of the GNU Library General Public License | 16 | You should have received a copy of the GNU Library General Public License |
17 | along with this library; see the file COPYING.LIB. If not, write to | 17 | along with this library; see the file COPYING.LIB. If not, write to |
18 | the Free Software Foundation, Inc., 59 Temple Place - Suite 330, | 18 | the Free Software Foundation, Inc., 59 Temple Place - Suite 330, |
19 | Boston, MA 02111-1307, USA. | 19 | Boston, MA 02111-1307, USA. |
20 | */ | 20 | */ |
21 | 21 | ||
22 | #ifndef _VCALFORMAT_H | 22 | #ifndef _VCALFORMAT_H |
23 | #define _VCALFORMAT_H | 23 | #define _VCALFORMAT_H |
24 | 24 | ||
25 | #include "calformat.h" | 25 | #include "calformat.h" |
26 | 26 | ||
27 | #define _VCAL_VERSION "1.0" | 27 | #define _VCAL_VERSION "1.0" |
28 | 28 | ||
29 | class VObject; | 29 | class VObject; |
30 | 30 | ||
31 | namespace KCal { | 31 | namespace KCal { |
32 | 32 | ||
33 | /** | 33 | /** |
34 | This class implements the vCalendar format. It provides methods for | 34 | This class implements the vCalendar format. It provides methods for |
35 | loading/saving/converting vCalendar format data into the internal KOrganizer | 35 | loading/saving/converting vCalendar format data into the internal KOrganizer |
36 | representation as Calendar and Events. | 36 | representation as Calendar and Events. |
37 | 37 | ||
38 | @short vCalendar format implementation | 38 | @short vCalendar format implementation |
39 | */ | 39 | */ |
40 | class VCalFormat : public CalFormat { | 40 | class VCalFormat : public CalFormat { |
41 | public: | 41 | public: |
42 | VCalFormat(); | 42 | VCalFormat(); |
43 | virtual ~VCalFormat(); | 43 | virtual ~VCalFormat(); |
44 | 44 | ||
45 | /** loads a calendar on disk in vCalendar format into the current calendar. | 45 | /** loads a calendar on disk in vCalendar format into the current calendar. |
46 | * any information already present is lost. Returns TRUE if successful, | 46 | * any information already present is lost. Returns TRUE if successful, |
47 | * else returns FALSE. | 47 | * else returns FALSE. |
48 | * @param fileName the name of the calendar on disk. | 48 | * @param fileName the name of the calendar on disk. |
49 | */ | 49 | */ |
50 | bool load(Calendar *,const QString &fileName); | 50 | bool load(Calendar *,const QString &fileName); |
51 | /** writes out the calendar to disk in vCalendar format. Returns true if | 51 | /** writes out the calendar to disk in vCalendar format. Returns true if |
52 | * successful and false on error. | 52 | * successful and false on error. |
53 | * @param fileName the name of the file | 53 | * @param fileName the name of the file |
54 | */ | 54 | */ |
55 | bool save(Calendar *,const QString &fileName); | 55 | bool save(Calendar *,const QString &fileName); |
56 | 56 | ||
57 | /** | 57 | /** |
58 | Parse string and populate calendar with that information. | 58 | Parse string and populate calendar with that information. |
59 | */ | 59 | */ |
60 | bool fromString( Calendar *, const QString & ); | 60 | bool fromString( Calendar *, const QString & ); |
61 | /** | 61 | /** |
62 | Return calendar information as string. | 62 | Return calendar information as string. |
63 | */ | 63 | */ |
64 | QString toString( Calendar * ); | 64 | QString toString( Calendar * ); |
65 | QString eventToString( Event * ); | ||
66 | QString todoToString( Todo * ); | ||
65 | 67 | ||
66 | protected: | 68 | protected: |
67 | /** translates a VObject of the TODO type into a Event */ | 69 | /** translates a VObject of the TODO type into a Event */ |
68 | Todo *VTodoToEvent(VObject *vtodo); | 70 | Todo *VTodoToEvent(VObject *vtodo); |
69 | /** translates a VObject into a Event and returns a pointer to it. */ | 71 | /** translates a VObject into a Event and returns a pointer to it. */ |
70 | Event *VEventToEvent(VObject *vevent); | 72 | Event *VEventToEvent(VObject *vevent); |
71 | /** translate a Event into a VTodo-type VObject and return pointer */ | 73 | /** translate a Event into a VTodo-type VObject and return pointer */ |
72 | VObject *eventToVTodo(const Todo *anEvent); | 74 | VObject *eventToVTodo(const Todo *anEvent); |
73 | /** translate a Event into a VObject and returns a pointer to it. */ | 75 | /** translate a Event into a VObject and returns a pointer to it. */ |
74 | VObject* eventToVEvent(const Event *anEvent); | 76 | VObject* eventToVEvent(const Event *anEvent); |
75 | 77 | ||
76 | /** takes a QDate and returns a string in the format YYYYMMDDTHHMMSS */ | 78 | /** takes a QDate and returns a string in the format YYYYMMDDTHHMMSS */ |
77 | QString qDateToISO(const QDate &); | 79 | QString qDateToISO(const QDate &); |
78 | /** takes a QDateTime and returns a string in format YYYYMMDDTHHMMSS */ | 80 | /** takes a QDateTime and returns a string in format YYYYMMDDTHHMMSS */ |
79 | QString qDateTimeToISO(const QDateTime &, bool zulu=TRUE); | 81 | QString qDateTimeToISO(const QDateTime &, bool zulu=TRUE); |
80 | /** takes a string in the format YYYYMMDDTHHMMSS and returns a | 82 | /** takes a string in the format YYYYMMDDTHHMMSS and returns a |
81 | * valid QDateTime. */ | 83 | * valid QDateTime. */ |
82 | QDateTime ISOToQDateTime(const QString & dtStr); | 84 | QDateTime ISOToQDateTime(const QString & dtStr); |
83 | /** takes a string in the format YYYYMMDD and returns a | 85 | /** takes a string in the format YYYYMMDD and returns a |
84 | * valid QDate. */ | 86 | * valid QDate. */ |
85 | QDate ISOToQDate(const QString & dtStr); | 87 | QDate ISOToQDate(const QString & dtStr); |
86 | /** takes a vCalendar tree of VObjects, and puts all of them that have | 88 | /** takes a vCalendar tree of VObjects, and puts all of them that have |
87 | * the "event" property into the dictionary, todos in the todo-list, etc. */ | 89 | * the "event" property into the dictionary, todos in the todo-list, etc. */ |
88 | void populate(VObject *vcal); | 90 | void populate(VObject *vcal); |
89 | 91 | ||
90 | /** takes a number 0 - 6 and returns the two letter string of that day, | 92 | /** takes a number 0 - 6 and returns the two letter string of that day, |
91 | * i.e. MO, TU, WE, etc. */ | 93 | * i.e. MO, TU, WE, etc. */ |
92 | const char *dayFromNum(int day); | 94 | const char *dayFromNum(int day); |
93 | /** the reverse of the above function. */ | 95 | /** the reverse of the above function. */ |
94 | int numFromDay(const QString &day); | 96 | int numFromDay(const QString &day); |
95 | 97 | ||
96 | Attendee::PartStat readStatus(const char *s) const; | 98 | Attendee::PartStat readStatus(const char *s) const; |
97 | QCString writeStatus(Attendee::PartStat status) const; | 99 | QCString writeStatus(Attendee::PartStat status) const; |
98 | 100 | ||
99 | private: | 101 | private: |
100 | Calendar *mCalendar; | 102 | Calendar *mCalendar; |
101 | 103 | ||
102 | QPtrList<Event> mEventsRelate; // events with relations | 104 | QPtrList<Event> mEventsRelate; // events with relations |
103 | QPtrList<Todo> mTodosRelate; // todos with relations | 105 | QPtrList<Todo> mTodosRelate; // todos with relations |
104 | }; | 106 | }; |
105 | 107 | ||
106 | } | 108 | } |
107 | 109 | ||
108 | #endif | 110 | #endif |