summaryrefslogtreecommitdiff
path: root/core
AgeCommit message (Collapse)AuthorFilesLines
2003-03-28 now as owait in libopieharlekin5-41/+4
2003-03-28Minimum size in weekview should be dependant on the height of the window.umopapisdn1-11/+9
2003-03-28Bugfix: (Bug #000782) Display events with no duration, unless it's an ↵umopapisdn3-3/+3
"effective event" ending at 00:00 starting at a previous day. (i.e ending at midnight)
2003-03-28Add Replaces: opie-rotation to ensure its removed.kergoth1-0/+1
2003-03-27Bugfix: If menu-button is pressed, the mainmenu will now open as expectedeilers6-16/+101
To have the same look and feel as the other pim applications, the moveable toolbar is disabled. This behaviour is changeable in the configuration.
2003-03-271) now that setCurrentRotation sets QWS_DISPLAY, dont call setDefaultRotationkergoth1-14/+10
2) now that we arent calling setDefaultRotation, we can rely on defaultRotation() returning the actual original default rotation (deforient). So in turn, we can simply 'flip back' to the original rotation, rather than trying to calculate what the original rotation would have been.
2003-03-27Remove the need for explicit <= 0, >= 360 etc handling by using % 360.kergoth1-11/+4
2003-03-26BUGFIX: as pointed out by robert, dont fsck with QWS_DISPLAY if it was ↵kergoth1-4/+4
already set.
2003-03-26adapted to what was discussed today on irc. Direction of rotation is ↵harlekin2-11/+29
settable in appearance in future
2003-03-26Add a second call to defaultRotation, to ensrue deforient matches reality, ↵kergoth1-0/+1
if we loaded the rotation from Config or ODevice.
2003-03-26Modified launcher to set rotation via:kergoth1-20/+39
1) QWS_DISPLAY env var 2) Rot field as saved by setDefaultRotation 3) physical orientation as controlled by ODevice (this is broken currently, due to ODevice requiring a QApplication to be created)
2003-03-26also activate discovery if not allready running - makes beaming with s45 easierharlekin2-10/+21
2003-03-26nicer icon for searchharlekin1-1/+1
2003-03-26part implement of new qcop massagesllornkcor2-0/+50
2003-03-26On older ipaqs the display is rotated to 270 as default so adding 90 does ↵groucho1-0/+8
nothing => fixed by rotating the values (270+90=0, 0-90=370)
2003-03-26- oops. thx Harlekinsimon1-9/+0
2003-03-26- adding control filesimon1-0/+9
2003-03-26Provides and replaces libopieobex, i'm renaming to libopieobex1.kergoth1-0/+2
2003-03-26s/openobex/openobex | libopenobex1/kergoth1-1/+1
2003-03-25Revamped the userinterface of the header for weekview to look more like the ↵umopapisdn3-22/+252
other views.
2003-03-25better interaction with the rotate appharlekin2-4/+3
2003-03-25ignoreharlekin1-0/+1
2003-03-25here comes the rotate startmenu applet .-)harlekin5-1/+206
2003-03-25- keep an eye on resize events on the desktop widget, which are ansimon3-8/+28
indication for things like life rotation. upon a resize re-layout things (taskbar, tabs and maxwindow rect)
2003-03-24Remove these files that I added by misstake.umopapisdn4-724/+0
2003-03-24Change the icons for "back" & "forward" in the Weekview header in theumopapisdn2-12/+5
right files this time. :)
2003-03-24Ehm... So I made some changes in some files that were actually generated ↵umopapisdn1-0/+72
from this UI file, didn't notice this while compiling. Well now the changes are in the ui files. :)
2003-03-24configuration for hte big busy cursorharlekin2-23/+31
2003-03-24preliminary big busy cursor - maybe an animation laterharlekin5-5/+59
2003-03-24include qwsmouse_qws.hkergoth1-0/+1
2003-03-24Include calibrate.h regardless, as its no longer dependent on device ifdefs, ↵kergoth1-2/+1
and include qwsmouse_qws.h.
2003-03-24modify postinst scripts to prevent spurious nonzero exit codesjamey8-8/+42
2003-03-24*** empty log message ***umopapisdn1-2/+2
2003-03-24Bugfix: Duplicating events introduced a bug making it impossible to add ↵umopapisdn2-13/+13
events Week List view. This fixes it.
2003-03-24Userinterface update. Use same icons in weeklistview as other views for ↵umopapisdn1-0/+206
navigating back/forward.
2003-03-24New feature: (bug/feature request #0000227) In dayview, to icons have been ↵umopapisdn4-0/+283
added to navigate 1 week back and forward.
2003-03-24New feature: In dayview it's now possible to duplicate an event (and ↵umopapisdn4-15/+86
immediatly change some parameters for the duplicate).
2003-03-24Bugfix: (bug #0000722) - Date-Popup in calendar-find dialog only appears ↵umopapisdn1-0/+1
shortly and then closes. This is due to the fact that the date-popup appears on top of the button just pressed, and when the mouseup event fires, it is on the date-popup, so this fix just moves the find dialog to the topleft corner, which makes sure that the date-popup doesn't appear underneath the clicking position.
2003-03-24DetailView: If card is too big to show, use page up/down instead ofeilers3-13/+27
next/previous contact if cursor up/down is used ..
2003-03-24Remove ifdefs based on device as the means by which we decide to run ↵kergoth2-14/+14
calibrate, and instead check if the mouse handler inherits from QCalibratedMouseHandler.
2003-03-23Bugfix: (bug #0000728) Well, not really a bugfix maybe. The bug is that anumopapisdn1-0/+255
all day event doesn't show up other than the first day. This is due to a limitation in qpe. This fix just disables the possibility of making an all day event span more than 1 day in the event entry form.
2003-03-23Use of bat2 bool uninitialized (when on zaurus) resultedkergoth1-1/+1
in display of "Charging both devices" which confused users. @@ -15,7 +15,7 @@ using namespace Opie; BatteryStatus::BatteryStatus( const PowerStatus *p, QWidget *parent ) - : QWidget( parent, 0, WDestructiveClose), ps(p) { + : QWidget( parent, 0, WDestructiveClose), ps(p), bat2(false) { setCaption( tr("Battery status") ); QPushButton *pb = new QPushButton( tr("Close"), this ); pb->move( 70, 250 );
2003-03-23Bugfix: (bug #0000735) New events added in WeekListView are no longer ↵umopapisdn1-1/+6
defaulting to 01-01-1970.
2003-03-23Bugfix: (bug #0000211) Events ending at mat the following day. Fix for ↵umopapisdn1-20/+22
weeklistview.
2003-03-23Bugfix: (bug #0000211) Events ending at mat the following day. Fix for dayview.umopapisdn1-15/+17
2003-03-23Bugfix: (bug #0000211) Events ending at midnight shouldn't be displayed at ↵umopapisdn1-8/+10
the following day. Fix for weekview.
2003-03-23count right number of max showing eventsharlekin1-1/+1
2003-03-23if multiple days are selected and only later is on still show all events on ↵harlekin1-1/+11
next days ,)
2003-03-23use the common config symbol and save some kbharlekin1-1/+1
2003-03-23workaround for column size change when reset command is executedllornkcor1-7/+7