-rw-r--r-- | korganizer/journalentry.cpp | 19 | ||||
-rw-r--r-- | korganizer/journalentry.h | 2 | ||||
-rw-r--r-- | korganizer/kojournalview.cpp | 19 |
3 files changed, 31 insertions, 9 deletions
diff --git a/korganizer/journalentry.cpp b/korganizer/journalentry.cpp index add874f..395392c 100644 --- a/korganizer/journalentry.cpp +++ b/korganizer/journalentry.cpp | |||
@@ -48,33 +48,33 @@ | |||
48 | #include <libkcal/calendarresources.h> | 48 | #include <libkcal/calendarresources.h> |
49 | #include <libkcal/resourcecalendar.h> | 49 | #include <libkcal/resourcecalendar.h> |
50 | #include <kresources/resourceselectdialog.h> | 50 | #include <kresources/resourceselectdialog.h> |
51 | 51 | ||
52 | #include "journalentry.h" | 52 | #include "journalentry.h" |
53 | //#include "journalentry.moc" | 53 | //#include "journalentry.moc" |
54 | #ifndef DESKTOP_VERSION | 54 | #ifndef DESKTOP_VERSION |
55 | #include <qpe/qpeapplication.h> | 55 | #include <qpe/qpeapplication.h> |
56 | #endif | 56 | #endif |
57 | JournalEntry::JournalEntry(Calendar *calendar,QWidget *parent) : | 57 | JournalEntry::JournalEntry(Calendar *calendar,QWidget *parent) : |
58 | QFrame(parent) | 58 | QFrame(parent) |
59 | { | 59 | { |
60 | heiHint = QApplication::desktop()->height() / 5 ; | 60 | heiHint = QApplication::desktop()->height() / 5 ; |
61 | showOnlyMode = false; | 61 | showOnlyMode = false; |
62 | mCalendar = calendar; | 62 | mCalendar = calendar; |
63 | mJournal = 0; | 63 | mJournal = 0; |
64 | 64 | visibleMode = true; | |
65 | QHBox * vb = new QHBox ( this ); | 65 | QHBox * vb = new QHBox ( this ); |
66 | QPixmap iconp; | 66 | QPixmap iconp; |
67 | 67 | ||
68 | QPushButton * toggleJournal = new QPushButton( vb ); | 68 | QPushButton * toggleJournal = new QPushButton( vb ); |
69 | iconp = SmallIcon("1updownarrow"); | 69 | iconp = SmallIcon("1updownarrow"); |
70 | toggleJournal->setPixmap (iconp ) ; | 70 | toggleJournal->setPixmap (iconp ) ; |
71 | new QLabel(i18n(" Title: "),vb); | 71 | new QLabel(i18n(" Title: "),vb); |
72 | mTitle = new KLineEdit ( vb ); | 72 | mTitle = new KLineEdit ( vb ); |
73 | mTitleLabel = new QLabel(i18n("Title"),vb); | 73 | mTitleLabel = new QLabel(i18n("Title"),vb); |
74 | mTitleLabel->setMargin(0); | 74 | mTitleLabel->setMargin(0); |
75 | mTitleLabel->setAlignment(AlignCenter); | 75 | mTitleLabel->setAlignment(AlignCenter); |
76 | QPushButton * loadTemplate = new QPushButton( vb ); | 76 | QPushButton * loadTemplate = new QPushButton( vb ); |
77 | QPushButton * saveTemplate = new QPushButton( vb ); | 77 | QPushButton * saveTemplate = new QPushButton( vb ); |
78 | if ( QApplication::desktop()->width() < 321 ) | 78 | if ( QApplication::desktop()->width() < 321 ) |
79 | iconp = SmallIcon("fileexport16"); | 79 | iconp = SmallIcon("fileexport16"); |
80 | else | 80 | else |
@@ -158,102 +158,109 @@ void JournalEntry::slotLoadTemplate() | |||
158 | mEditor->getCursorPosition (& line, & col ); | 158 | mEditor->getCursorPosition (& line, & col ); |
159 | mEditor-> insertAt ( text, line, col, true ); | 159 | mEditor-> insertAt ( text, line, col, true ); |
160 | //mEditor->setIgnoreMark( true ); | 160 | //mEditor->setIgnoreMark( true ); |
161 | } | 161 | } |
162 | void JournalEntry::setDate(const QDate &date) | 162 | void JournalEntry::setDate(const QDate &date) |
163 | { | 163 | { |
164 | showOnlyMode = false; | 164 | showOnlyMode = false; |
165 | mDate = date; | 165 | mDate = date; |
166 | writeJournal(); | 166 | writeJournal(); |
167 | int id = mCalendar->defaultCalendar(); | 167 | int id = mCalendar->defaultCalendar(); |
168 | QString calname = KOPrefs::instance()->getCalendar( id )->mName; | 168 | QString calname = KOPrefs::instance()->getCalendar( id )->mName; |
169 | mTitleLabel->setText( " (" + calname +")"); | 169 | mTitleLabel->setText( " (" + calname +")"); |
170 | } | 170 | } |
171 | 171 | ||
172 | void JournalEntry::toggleShowJournal() | 172 | void JournalEntry::toggleShowJournal() |
173 | { | 173 | { |
174 | flushEntry(); | 174 | if (!mEditor->text().isEmpty() || !mTitle->text().isEmpty()) |
175 | flushEntry(); | ||
175 | if ( showOnlyMode ) | 176 | if ( showOnlyMode ) |
176 | emit showJournalOnly( 0 ); | 177 | emit showJournalOnly( 0 ); |
177 | else | 178 | else { |
179 | // we have to protect mJournal from deleting if mJournal has empty text | ||
180 | visibleMode = false; // set to true via :setShowOnly() | ||
178 | emit showJournalOnly( mJournal ); | 181 | emit showJournalOnly( mJournal ); |
182 | } | ||
179 | } | 183 | } |
180 | void JournalEntry::setShowOnly() | 184 | void JournalEntry::setShowOnly() |
181 | { | 185 | { |
182 | showOnlyMode = true; | 186 | showOnlyMode = true; |
183 | mEditor->setFocus(); | 187 | mEditor->setFocus(); |
188 | visibleMode = true; | ||
184 | } | 189 | } |
185 | void JournalEntry::setJournal(Journal *journal) | 190 | void JournalEntry::setJournal(Journal *journal) |
186 | { | 191 | { |
187 | writeJournal(); | 192 | writeJournal(); |
188 | 193 | ||
189 | mJournal = journal; | 194 | mJournal = journal; |
190 | if ( journal->isReadOnly() ) | 195 | if ( journal->isReadOnly() ) |
191 | mTitle->setText(mJournal->summary()+" ("+i18n("readonly")+")"); | 196 | mTitle->setText(mJournal->summary()+" ("+i18n("readonly")+")"); |
192 | else | 197 | else |
193 | mTitle->setText(mJournal->summary()); | 198 | mTitle->setText(mJournal->summary()); |
194 | mEditor->setText(mJournal->description()); | 199 | mEditor->setText(mJournal->description()); |
195 | mTitle->setReadOnly (journal->isReadOnly() ); | 200 | mTitle->setReadOnly (journal->isReadOnly() ); |
196 | mEditor->setReadOnly ( journal->isReadOnly() ); | 201 | mEditor->setReadOnly ( journal->isReadOnly() ); |
197 | int id = mJournal->calID(); | 202 | int id = mJournal->calID(); |
198 | 203 | ||
199 | QString calname = KOPrefs::instance()->getCalendar( id )->mName; | 204 | QString calname = KOPrefs::instance()->getCalendar( id )->mName; |
200 | mTitleLabel->setText( " (" + calname +")"); | 205 | mTitleLabel->setText( " (" + calname +")"); |
201 | 206 | ||
202 | } | 207 | } |
203 | 208 | ||
204 | Journal *JournalEntry::journal() const | 209 | Journal *JournalEntry::journal() const |
205 | { | 210 | { |
206 | return mJournal; | 211 | return mJournal; |
207 | } | 212 | } |
208 | 213 | ||
209 | 214 | ||
210 | void JournalEntry::clear() | 215 | void JournalEntry::clear() |
211 | { | 216 | { |
212 | mJournal = 0; | 217 | mJournal = 0; |
213 | mEditor->setText(""); | 218 | mEditor->setText(""); |
219 | mTitle->setText(""); | ||
214 | } | 220 | } |
215 | 221 | ||
216 | bool JournalEntry::eventFilter( QObject *o, QEvent *e ) | 222 | bool JournalEntry::eventFilter( QObject *o, QEvent *e ) |
217 | { | 223 | { |
218 | // kdDebug() << "JournalEntry::event received " << e->type() << endl; | 224 | // kdDebug() << "JournalEntry::event received " << e->type() << endl; |
219 | 225 | ||
220 | if ( e->type() == QEvent::FocusOut ) { | 226 | if ( e->type() == QEvent::FocusOut ) { |
221 | writeJournal(); | 227 | writeJournal(); |
222 | } | 228 | } |
223 | if ( e->type() == QEvent::KeyPress ) { | 229 | if ( e->type() == QEvent::KeyPress ) { |
224 | QKeyEvent * k = (QKeyEvent *) e; | 230 | QKeyEvent * k = (QKeyEvent *) e; |
225 | if ( k->state() == Qt::ControlButton ) { | 231 | if ( k->state() == Qt::ControlButton ) { |
226 | k->ignore(); | 232 | k->ignore(); |
227 | //return true; | 233 | //return true; |
228 | } | 234 | } |
229 | } | 235 | } |
230 | 236 | ||
231 | return QFrame::eventFilter( o, e ); // standard event processing | 237 | return QFrame::eventFilter( o, e ); // standard event processing |
232 | } | 238 | } |
233 | 239 | ||
234 | void JournalEntry::writeJournal() | 240 | void JournalEntry::writeJournal() |
235 | { | 241 | { |
236 | 242 | if ( !visibleMode ) return; | |
237 | if (mEditor->text().isEmpty() && mTitle->text().isEmpty()) { | 243 | if (mEditor->text().isEmpty() && mTitle->text().isEmpty()) { |
238 | if ( mJournal ) { | 244 | if ( mJournal ) { |
245 | Journal* j = mJournal; | ||
246 | mJournal = 0; | ||
239 | bool conf = KOPrefs::instance()->mConfirm; | 247 | bool conf = KOPrefs::instance()->mConfirm; |
240 | KOPrefs::instance()->mConfirm = false; | 248 | KOPrefs::instance()->mConfirm = false; |
241 | emit deleteJournal(mJournal); | 249 | emit deleteJournal(j); |
242 | KOPrefs::instance()->mConfirm = conf; | 250 | KOPrefs::instance()->mConfirm = conf; |
243 | mJournal = 0; | ||
244 | } | 251 | } |
245 | return; | 252 | return; |
246 | } | 253 | } |
247 | 254 | ||
248 | // kdDebug() << "JournalEntry::writeJournal()..." << endl; | 255 | // kdDebug() << "JournalEntry::writeJournal()..." << endl; |
249 | 256 | ||
250 | if (!mJournal) { | 257 | if (!mJournal) { |
251 | mJournal = new Journal; | 258 | mJournal = new Journal; |
252 | mJournal->setDtStart(QDateTime(mDate,QTime(0,0,0))); | 259 | mJournal->setDtStart(QDateTime(mDate,QTime(0,0,0))); |
253 | mCalendar->addJournal(mJournal); | 260 | mCalendar->addJournal(mJournal); |
254 | } | 261 | } |
255 | 262 | ||
256 | mJournal->setDescription(mEditor->text()); | 263 | mJournal->setDescription(mEditor->text()); |
257 | mJournal->setSummary(mTitle->text()); | 264 | mJournal->setSummary(mTitle->text()); |
258 | } | 265 | } |
259 | 266 | ||
diff --git a/korganizer/journalentry.h b/korganizer/journalentry.h index f2db785..e98d018 100644 --- a/korganizer/journalentry.h +++ b/korganizer/journalentry.h | |||
@@ -38,44 +38,46 @@ using namespace KCal; | |||
38 | class JournalEntry : public QFrame { | 38 | class JournalEntry : public QFrame { |
39 | Q_OBJECT | 39 | Q_OBJECT |
40 | public: | 40 | public: |
41 | JournalEntry(Calendar *,QWidget *parent); | 41 | JournalEntry(Calendar *,QWidget *parent); |
42 | virtual ~JournalEntry(); | 42 | virtual ~JournalEntry(); |
43 | 43 | ||
44 | void setJournal(Journal *); | 44 | void setJournal(Journal *); |
45 | Journal *journal() const; | 45 | Journal *journal() const; |
46 | 46 | ||
47 | void setDate(const QDate &); | 47 | void setDate(const QDate &); |
48 | 48 | ||
49 | void clear(); | 49 | void clear(); |
50 | 50 | ||
51 | void flushEntry(); | 51 | void flushEntry(); |
52 | void setShowOnly(); | 52 | void setShowOnly(); |
53 | QSize sizeHint() const; | 53 | QSize sizeHint() const; |
54 | void setVisibleMode( bool b ) { visibleMode = b;} | ||
54 | 55 | ||
55 | protected slots: | 56 | protected slots: |
56 | void slotSaveTemplate(); | 57 | void slotSaveTemplate(); |
57 | void slotLoadTemplate(); | 58 | void slotLoadTemplate(); |
58 | void toggleShowJournal(); | 59 | void toggleShowJournal(); |
59 | signals: | 60 | signals: |
60 | void deleteJournal(Journal *); | 61 | void deleteJournal(Journal *); |
61 | void newJournal(); | 62 | void newJournal(); |
62 | void showJournalOnly( Journal * ); | 63 | void showJournalOnly( Journal * ); |
63 | 64 | ||
64 | protected: | 65 | protected: |
65 | bool eventFilter( QObject *o, QEvent *e ); | 66 | bool eventFilter( QObject *o, QEvent *e ); |
66 | 67 | ||
67 | void writeJournal(); | 68 | void writeJournal(); |
68 | 69 | ||
69 | private: | 70 | private: |
71 | bool visibleMode; | ||
70 | bool showOnlyMode; | 72 | bool showOnlyMode; |
71 | Calendar *mCalendar; | 73 | Calendar *mCalendar; |
72 | Journal *mJournal; | 74 | Journal *mJournal; |
73 | QDate mDate; | 75 | QDate mDate; |
74 | void keyPressEvent ( QKeyEvent * ) ; | 76 | void keyPressEvent ( QKeyEvent * ) ; |
75 | QLabel *mTitleLabel; | 77 | QLabel *mTitleLabel; |
76 | KLineEdit * mTitle; | 78 | KLineEdit * mTitle; |
77 | KTextEdit *mEditor; | 79 | KTextEdit *mEditor; |
78 | int heiHint; | 80 | int heiHint; |
79 | }; | 81 | }; |
80 | 82 | ||
81 | #endif | 83 | #endif |
diff --git a/korganizer/kojournalview.cpp b/korganizer/kojournalview.cpp index cb9a2c0..b659d53 100644 --- a/korganizer/kojournalview.cpp +++ b/korganizer/kojournalview.cpp | |||
@@ -108,97 +108,110 @@ void KOJournalView::updateConfig() | |||
108 | mEntry->setFont ( KOPrefs::instance()->mJornalViewFont ); | 108 | mEntry->setFont ( KOPrefs::instance()->mJornalViewFont ); |
109 | mEntry = jEntries.next(); | 109 | mEntry = jEntries.next(); |
110 | } | 110 | } |
111 | } | 111 | } |
112 | void KOJournalView::updateView() | 112 | void KOJournalView::updateView() |
113 | { | 113 | { |
114 | JournalEntry* mEntry = jEntries.first(); | 114 | JournalEntry* mEntry = jEntries.first(); |
115 | while ( mEntry ) { | 115 | while ( mEntry ) { |
116 | mEntry->setFont ( KOPrefs::instance()->mJornalViewFont ); | 116 | mEntry->setFont ( KOPrefs::instance()->mJornalViewFont ); |
117 | mEntry = jEntries.next(); | 117 | mEntry = jEntries.next(); |
118 | } | 118 | } |
119 | showDates( mDate, QDate() ); | 119 | showDates( mDate, QDate() ); |
120 | } | 120 | } |
121 | 121 | ||
122 | void KOJournalView::flushView() | 122 | void KOJournalView::flushView() |
123 | { | 123 | { |
124 | static bool ff = false; | ||
125 | if ( ff ) return; | ||
126 | ff = true; | ||
124 | JournalEntry* mEntry = jEntries.first(); | 127 | JournalEntry* mEntry = jEntries.first(); |
125 | while ( mEntry ) { | 128 | while ( mEntry ) { |
126 | mEntry->flushEntry(); | 129 | mEntry->flushEntry(); |
127 | mEntry = jEntries.next(); | 130 | mEntry = jEntries.next(); |
128 | } | 131 | } |
132 | ff = false; | ||
129 | } | 133 | } |
130 | 134 | ||
131 | void KOJournalView::clearList() | 135 | void KOJournalView::clearList() |
132 | { | 136 | { |
133 | JournalEntry* mEntry = jEntries.first(); | 137 | JournalEntry* mEntry = jEntries.first(); |
134 | while ( mEntry ) { | 138 | while ( mEntry ) { |
135 | mEntry->clear(); | 139 | mEntry->clear(); |
136 | mEntry = jEntries.next(); | 140 | mEntry = jEntries.next(); |
137 | } | 141 | } |
138 | } | 142 | } |
139 | void KOJournalView::newJournal() | 143 | void KOJournalView::newJournal() |
140 | { | 144 | { |
145 | //qDebug(" KOJournalView::newJournal()"); | ||
141 | flushView(); | 146 | flushView(); |
142 | Journal* mJournal = new Journal; | 147 | Journal* mJournal = new Journal; |
143 | mJournal->setDtStart(QDateTime(mDate,QTime(0,0,0))); | 148 | mJournal->setDtStart(QDateTime(mDate,QTime(0,0,0))); |
144 | mCalendar->addJournal(mJournal); | 149 | mCalendar->addJournal(mJournal); |
145 | showDates( mDate, QDate() ); | 150 | showDates( mDate, QDate() ); |
146 | } | 151 | } |
147 | 152 | ||
148 | void KOJournalView::showOnly ( Journal* j ) | 153 | void KOJournalView::showOnly ( Journal* j ) |
149 | { | 154 | { |
155 | //qDebug("showOnly %x ", j); | ||
150 | flushView(); | 156 | flushView(); |
151 | if ( j == 0 ) { | 157 | if ( j == 0 ) { |
152 | showDates( mDate, QDate() ); | 158 | showDates( mDate, QDate() ); |
153 | return; | 159 | return; |
154 | } | 160 | } |
155 | QPtrList<Journal> jl; | 161 | QPtrList<Journal> jl; |
156 | jl.append ( j ); | 162 | jl.append ( j ); |
157 | showList( jl ); | 163 | showList( jl ); |
158 | JournalEntry* mEntry = jEntries.first(); | 164 | JournalEntry* mEntry = jEntries.first(); |
159 | mEntry->setShowOnly(); | 165 | mEntry->setShowOnly(); |
160 | } | 166 | } |
161 | void KOJournalView::showList(QPtrList<Journal> jl) | 167 | void KOJournalView::showList(QPtrList<Journal> jl) |
162 | { | 168 | { |
169 | //qDebug("KOJournalView::showList %d",jl.count() ); | ||
163 | JournalEntry* mEntry = jEntries.first(); | 170 | JournalEntry* mEntry = jEntries.first(); |
164 | JournalEntry* firstEntry = mEntry; | 171 | JournalEntry* firstEntry = mEntry; |
165 | int count = jl.count(); | 172 | int count = jl.count(); |
166 | int iii = 0; | 173 | int iii = 0; |
167 | while ( iii < count ) { | 174 | while ( iii < count ) { |
168 | if ( !mEntry ) { | 175 | if ( !mEntry ) { |
169 | mEntry = getNewEntry(); | 176 | mEntry = getNewEntry(); |
170 | mEntry->show(); | 177 | mEntry->show(); |
178 | mEntry->setVisibleMode( true ); | ||
171 | mEntry->setDate(mDate); | 179 | mEntry->setDate(mDate); |
172 | mEntry->setJournal(jl.at(iii)); | 180 | mEntry->setJournal(jl.at(iii)); |
173 | mEntry = 0; | 181 | mEntry = 0; |
174 | } else { | 182 | } else { |
175 | mEntry->setDate(mDate); | 183 | mEntry->setDate(mDate); |
176 | mEntry->setJournal(jl.at(iii)); | 184 | mEntry->setJournal(jl.at(iii)); |
177 | mEntry->show(); | 185 | mEntry->show(); |
186 | mEntry->setVisibleMode( true ); | ||
178 | mEntry = jEntries.next(); | 187 | mEntry = jEntries.next(); |
179 | } | 188 | } |
180 | ++iii; | 189 | ++iii; |
181 | } | 190 | } |
182 | while ( mEntry ) { | 191 | while ( mEntry ) { |
183 | mEntry->setDate(mDate); | 192 | mEntry->setDate(mDate); |
184 | mEntry->clear(); | 193 | mEntry->clear(); |
185 | if ( mEntry != firstEntry ) | 194 | if ( mEntry != firstEntry ) { |
186 | mEntry->hide(); | 195 | mEntry->hide(); |
187 | else | 196 | mEntry->setVisibleMode( false ); |
197 | } | ||
198 | else { | ||
199 | mEntry->setVisibleMode( true ); | ||
188 | mEntry->show(); | 200 | mEntry->show(); |
201 | } | ||
189 | mEntry = jEntries.next(); | 202 | mEntry = jEntries.next(); |
190 | } | 203 | } |
191 | } | 204 | } |
192 | 205 | ||
193 | void KOJournalView::showDates(const QDate &start, const QDate &) | 206 | void KOJournalView::showDates(const QDate &start, const QDate &) |
194 | { | 207 | { |
195 | mDate = start; | 208 | mDate = start; |
196 | mDateLabel-> setText(KGlobal::locale()->formatDate(mDate)); | 209 | mDateLabel-> setText(KGlobal::locale()->formatDate(mDate)); |
197 | QPtrList<Journal> jl = calendar()->journals4Date( start ); | 210 | QPtrList<Journal> jl = calendar()->journals4Date( start ); |
198 | showList( jl ); | 211 | showList( jl ); |
199 | } | 212 | } |
200 | 213 | ||
201 | void KOJournalView::showEvents(QPtrList<Event>) | 214 | void KOJournalView::showEvents(QPtrList<Event>) |
202 | { | 215 | { |
203 | // After new creation of list view no events are selected. | 216 | // After new creation of list view no events are selected. |
204 | // emit incidenceSelected( 0 ); | 217 | // emit incidenceSelected( 0 ); |