summaryrefslogtreecommitdiffabout
authorzautrix <zautrix>2005-02-01 23:46:24 (UTC)
committer zautrix <zautrix>2005-02-01 23:46:24 (UTC)
commit9ecfd0660e36b6b8dd7401f0edb16dd3d6f03289 (patch) (unidiff)
treed80eb20b97ab401b4e9e34f25b65030fb2c0b035
parentafa94abe147d23e09a14a81e47d04d4a3d5670c3 (diff)
downloadkdepimpi-9ecfd0660e36b6b8dd7401f0edb16dd3d6f03289.zip
kdepimpi-9ecfd0660e36b6b8dd7401f0edb16dd3d6f03289.tar.gz
kdepimpi-9ecfd0660e36b6b8dd7401f0edb16dd3d6f03289.tar.bz2
text
Diffstat (more/less context) (ignore whitespace changes)
-rw-r--r--bin/kdepim/korganizer/featuresKOPI.txt39
-rw-r--r--korganizer/komonthview.cpp11
2 files changed, 41 insertions, 9 deletions
diff --git a/bin/kdepim/korganizer/featuresKOPI.txt b/bin/kdepim/korganizer/featuresKOPI.txt
index ab6b224..052680e 100644
--- a/bin/kdepim/korganizer/featuresKOPI.txt
+++ b/bin/kdepim/korganizer/featuresKOPI.txt
@@ -145,2 +145,4 @@ B) Useful features, that are not straighforward to see
1456) Navigation in agenda view 1456) Navigation in agenda view
1467) Monthview as week view
1478) Switching display mode in date edit
146 148
@@ -156,5 +158,6 @@ That bevaviour is not a bug, it is caused by the the behaviour of the
156single left click on the item. 158single left click on the item.
159
1572) 1602)
158Moving of items in the agenda view: 161Moving of items in the agenda view:
159In the aganda view you can move an item by clicking on it and holding 162In the agenda view you can move an item by clicking on it and holding
160the mouse down. 163the mouse down.
@@ -164,2 +167,3 @@ you to make unwanted moves of the item when you click on it(and moving the
164mouse only a small distance with this click) 167mouse only a small distance with this click)
168
1653) 1693)
@@ -170,4 +174,5 @@ This recurrence is automatically added to the list
170of recurrence exceptions and a non-recurring clone is created. 174of recurrence exceptions and a non-recurring clone is created.
171To cancel a recurrence, create an exception by moving it 175To cancel a single recurrence, create an exception by moving it
172and then move it back and cancel it. 176and then move it back and cancel it.
177
1734) 1784)
@@ -176,2 +181,3 @@ In the month view there are on the left week numbers displayed.
176Click on a week number to see this week in the agenda view. 181Click on a week number to see this week in the agenda view.
182
1775) 1835)
@@ -189,2 +195,3 @@ then the (month-)navigation keys will select automatically the
189complete next month as date range. 195complete next month as date range.
196
1906) 1976)
@@ -203,3 +210,29 @@ The agenda view has "time labels" on the left, which displays the hours from 0-2
203If you press the mouse on the timelabels and move it up/down you can 210If you press the mouse on the timelabels and move it up/down you can
204increase/decrease the agenda size quickly. 211increase/decrease the agenda size quickly.
212 In the agenda view you can click on the day labels (e.g. Mon 14)
213to see the selected date in single day mode.
214If you click in single day mode the day label you will switch back to
215the previously selected date range.
216Right of the day labels is a ">" button.
217If you click this button, you will go one day ahead.
218Left of the day labels is the month name displayed.
219If you click this button, the month view is shown.
220
2217)
222Monthview as week view:
223On the left side of the monthview are the week number labels displayed.
224On top of these labels is a "W" displayed.
225If you click on this button the month view mode will switch to week view mode.
226To switch back, please click the button, which now displays a "M".
227
2288)
229Switching display mode in date edit:
230On several places is a date edit used.
231You can scroll the dates by selecting the part of the date (month, day, year)
232in the lineedit and pressing the key up/key down key.
233The display mode of a date edit is initially short date mode.
234(I.e. weekday names are not displayed)
235If you doubleclick in the lineedit the mode switches to long date mode.
236Now the weekday names are displayed for better overview.
237To switch back simply doubleclick again in the line edit.
205 238
diff --git a/korganizer/komonthview.cpp b/korganizer/komonthview.cpp
index 9888566..6294b98 100644
--- a/korganizer/komonthview.cpp
+++ b/korganizer/komonthview.cpp
@@ -692,7 +692,3 @@ void MonthViewCell::resizeEvent ( QResizeEvent * )
692 return; 692 return;
693#ifndef DESKTOP_VERSION 693
694 if ( !isVisible() ){
695 return;
696 }
697#endif
698 int size = height() - mLabel->height() - 2; 694 int size = height() - mLabel->height() - 2;
@@ -843,2 +839,4 @@ void KOMonthView::switchView()
843{ 839{
840 if ( selectedCell( ) )
841 selectedCell()->deselect();
844 mShowWeekView = !mShowWeekView; 842 mShowWeekView = !mShowWeekView;
@@ -1161,2 +1159,3 @@ void KOMonthView::computeLayoutWeek()
1161 x = 0; 1159 x = 0;
1160 w = colWid;
1162 } 1161 }
@@ -1165,3 +1164,3 @@ void KOMonthView::computeLayoutWeek()
1165 if ( i >= 5 ) { 1164 if ( i >= 5 ) {
1166 mDayLabels[i]->setGeometry( x+weeklabelwid,y,w/2,h); 1165 mDayLabels[i]->setGeometry( x+weeklabelwid,y,w/2+1,h);
1167 x -= w/2 ; 1166 x -= w/2 ;