kabc Library API Documentation

VCardDateValue.h

00001 /* 00002 libvcard - vCard parsing library for vCard version 3.0 00003 00004 Copyright (C) 1999 Rik Hemsley rik@kde.org 00005 00006 Permission is hereby granted, free of charge, to any person obtaining a copy 00007 of this software and associated documentation files (the "Software"), to 00008 deal in the Software without restriction, including without limitation the 00009 rights to use, copy, modify, merge, publish, distribute, sublicense, and/or 00010 sell copies of the Software, and to permit persons to whom the Software is 00011 furnished to do so, subject to the following conditions: 00012 00013 The above copyright notice and this permission notice shall be included in 00014 all copies or substantial portions of the Software. 00015 00016 THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 00017 IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 00018 FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 00019 AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN 00020 ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION 00021 WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. 00022 */ 00023 00024 #ifndef DATEVALUE_H 00025 #define DATEVALUE_H 00026 00027 #include <qcstring.h> 00028 #include <qdatetime.h> 00029 00030 #include <VCardValue.h> 00031 00032 namespace VCARD 00033 { 00034 00035 class KVCARD_EXPORT DateValue : public Value 00036 { 00037 #include "DateValue-generated.h" 00038 00039 DateValue( 00040 unsigned int year, 00041 unsigned int month, 00042 unsigned int day, 00043 unsigned int hour = 0, 00044 unsigned int minute = 0, 00045 unsigned int second = 0, 00046 double secFrac = 0, 00047 bool zonePositive = true, 00048 unsigned int zoneHour = 0, 00049 unsigned int zoneMinute = 0); 00050 00051 DateValue(const QDate &); 00052 DateValue(const QDateTime &); 00053 00054 DateValue *clone(); 00055 00056 bool hasTime(); 00057 00058 unsigned int year(); 00059 unsigned int month(); 00060 unsigned int day(); 00061 unsigned int hour(); 00062 unsigned int minute(); 00063 unsigned int second(); 00064 double secondFraction(); 00065 bool zonePositive(); 00066 unsigned int zoneHour(); 00067 unsigned int zoneMinute(); 00068 00069 void setYear (unsigned int); 00070 void setMonth (unsigned int); 00071 void setDay (unsigned int); 00072 void setHour (unsigned int); 00073 void setMinute (unsigned int); 00074 void setSecond (unsigned int); 00075 void setSecondFraction (double); 00076 void setZonePositive (bool); 00077 void setZoneHour (unsigned int); 00078 void setZoneMinute (unsigned int); 00079 00080 QDate qdate(); 00081 QTime qtime(); 00082 QDateTime qdt(); 00083 00084 private: 00085 00086 unsigned int year_, month_, day_, 00087 hour_, minute_, second_, 00088 zoneHour_, zoneMinute_; 00089 00090 double secFrac_; 00091 00092 bool zonePositive_; 00093 00094 bool hasTime_; 00095 }; 00096 00097 } 00098 00099 #endif
KDE Logo
This file is part of the documentation for kabc Library Version 3.4.0.
Documentation copyright © 1996-2004 the KDE developers.
Generated on Thu Apr 14 00:35:19 2005 by doxygen 1.3.7 written by Dimitri van Heesch, © 1997-2003