summaryrefslogtreecommitdiff
authorzecke <zecke>2002-03-19 19:20:30 (UTC)
committer zecke <zecke>2002-03-19 19:20:30 (UTC)
commitebbdb5c4f1c01881bd09f02d9efaa434a073a788 (patch) (unidiff)
tree9cf900b90df734248ec26d7860b427c397d148f9
parentc23db0c35b77cc1656ac8822ca948e73c50e8ee6 (diff)
downloadopie-ebbdb5c4f1c01881bd09f02d9efaa434a073a788.zip
opie-ebbdb5c4f1c01881bd09f02d9efaa434a073a788.tar.gz
opie-ebbdb5c4f1c01881bd09f02d9efaa434a073a788.tar.bz2
Make multiple backends possible
Diffstat (more/less context) (ignore whitespace changes)
-rw-r--r--libopie/tododb.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/libopie/tododb.cpp b/libopie/tododb.cpp
index 91331d0..e440dfc 100644
--- a/libopie/tododb.cpp
+++ b/libopie/tododb.cpp
@@ -117,49 +117,49 @@ public:
117 //} 117 //}
118 }else { 118 }else {
119 qWarning("could not load" ); 119 qWarning("could not load" );
120 } 120 }
121 delete root; 121 delete root;
122 return m_todos; 122 return m_todos;
123 } 123 }
124}; 124};
125 125
126} 126}
127 127
128ToDoDB::ToDoDB(const QString &fileName = QString::null, ToDoResource *res ){ 128ToDoDB::ToDoDB(const QString &fileName = QString::null, ToDoResource *res ){
129 m_fileName = fileName; 129 m_fileName = fileName;
130 if( fileName.isEmpty() && res == 0 ){ 130 if( fileName.isEmpty() && res == 0 ){
131 m_fileName = Global::applicationFileName("todolist","todolist.xml");; 131 m_fileName = Global::applicationFileName("todolist","todolist.xml");;
132 //qWarning("%s", m_fileName.latin1() ); 132 //qWarning("%s", m_fileName.latin1() );
133 }else if(res == 0 ){ // let's create a ToDoResource for xml 133 }else if(res == 0 ){ // let's create a ToDoResource for xml
134 res = new FileToDoResource(); 134 res = new FileToDoResource();
135 } 135 }
136 m_res = res; 136 m_res = res;
137 load(); 137 load();
138} 138}
139ToDoDB::~ToDoDB() 139ToDoDB::~ToDoDB()
140{ 140{
141 141 delete m_res;
142} 142}
143QValueList<ToDoEvent> ToDoDB::effectiveToDos(const QDate &from, const QDate &to, 143QValueList<ToDoEvent> ToDoDB::effectiveToDos(const QDate &from, const QDate &to,
144 bool all ) 144 bool all )
145{ 145{
146 QValueList<ToDoEvent> events; 146 QValueList<ToDoEvent> events;
147 for( QValueList<ToDoEvent>::Iterator it = m_todos.begin(); it!= m_todos.end(); ++it ){ 147 for( QValueList<ToDoEvent>::Iterator it = m_todos.begin(); it!= m_todos.end(); ++it ){
148 if( (*it).hasDate() ){ 148 if( (*it).hasDate() ){
149 if( (*it).date() >= from && (*it).date() <= to ) 149 if( (*it).date() >= from && (*it).date() <= to )
150 events.append( (*it) ); 150 events.append( (*it) );
151 }else if( all ){ 151 }else if( all ){
152 events.append( (*it) ); 152 events.append( (*it) );
153 } 153 }
154 } 154 }
155 return events; 155 return events;
156} 156}
157QValueList<ToDoEvent> ToDoDB::effectiveToDos(const QDate &from, 157QValueList<ToDoEvent> ToDoDB::effectiveToDos(const QDate &from,
158 bool all) 158 bool all)
159{ 159{
160 return effectiveToDos( from, QDate::currentDate(), all ); 160 return effectiveToDos( from, QDate::currentDate(), all );
161} 161}
162QValueList<ToDoEvent> ToDoDB::overDue() 162QValueList<ToDoEvent> ToDoDB::overDue()
163{ 163{
164 QValueList<ToDoEvent> events; 164 QValueList<ToDoEvent> events;
165 for( QValueList<ToDoEvent>::Iterator it = m_todos.begin(); it!= m_todos.end(); ++it ){ 165 for( QValueList<ToDoEvent>::Iterator it = m_todos.begin(); it!= m_todos.end(); ++it ){
@@ -178,38 +178,38 @@ void ToDoDB::addEvent( const ToDoEvent &event )
178} 178}
179void ToDoDB::editEvent( const ToDoEvent &event ) 179void ToDoDB::editEvent( const ToDoEvent &event )
180{ 180{
181 m_todos.remove( event ); 181 m_todos.remove( event );
182 m_todos.append( event ); 182 m_todos.append( event );
183} 183}
184void ToDoDB::removeEvent( const ToDoEvent &event ) 184void ToDoDB::removeEvent( const ToDoEvent &event )
185{ 185{
186 m_todos.remove( event ); 186 m_todos.remove( event );
187} 187}
188void ToDoDB::reload() 188void ToDoDB::reload()
189{ 189{
190 load(); 190 load();
191} 191}
192void ToDoDB::setFileName(const QString &file ) 192void ToDoDB::setFileName(const QString &file )
193{ 193{
194 m_fileName =file; 194 m_fileName =file;
195} 195}
196QString ToDoDB::fileName()const 196QString ToDoDB::fileName()const
197{ 197{
198 return m_fileName; 198 return m_fileName;
199} 199}
200void ToDoDB::load() 200void ToDoDB::load()
201{ 201{
202 202 m_todos = m_res->load( m_fileName );
203} 203}
204bool ToDoDB::save() 204bool ToDoDB::save()
205{ 205{
206 return m_res->save( m_fileName, m_todos ); 206 return m_res->save( m_fileName, m_todos );
207} 207}
208 208
209 209
210 210
211 211
212 212
213 213
214 214
215 215