summaryrefslogtreecommitdiffabout
path: root/korganizer
authorzautrix <zautrix>2005-07-09 11:21:22 (UTC)
committer zautrix <zautrix>2005-07-09 11:21:22 (UTC)
commite98b8d5a8e01d5dd7cf6b8967d1065d72f61c908 (patch) (side-by-side diff)
tree0687ea02ba6cd6071cad137593b8d0e0e21e910f /korganizer
parentb51db424f4b1e558ab8c7c723859bb564c99d83b (diff)
downloadkdepimpi-e98b8d5a8e01d5dd7cf6b8967d1065d72f61c908.zip
kdepimpi-e98b8d5a8e01d5dd7cf6b8967d1065d72f61c908.tar.gz
kdepimpi-e98b8d5a8e01d5dd7cf6b8967d1065d72f61c908.tar.bz2
fixxx
Diffstat (limited to 'korganizer') (more/less context) (show whitespace changes)
-rw-r--r--korganizer/journalentry.cpp27
1 files changed, 22 insertions, 5 deletions
diff --git a/korganizer/journalentry.cpp b/korganizer/journalentry.cpp
index f0e0f86..739949d 100644
--- a/korganizer/journalentry.cpp
+++ b/korganizer/journalentry.cpp
@@ -82,5 +82,5 @@ JournalEntry::JournalEntry(Calendar *calendar,QWidget *parent) :
mTitle = new KOLocationBox(TRUE, vb, 30);
- mTitle->setSizePolicy( QSizePolicy( QSizePolicy::MinimumExpanding ,QSizePolicy::Fixed ,FALSE) );
+ mTitle->setSizePolicy( QSizePolicy( QSizePolicy::Preferred ,QSizePolicy::Fixed ,FALSE) );
mCalendarBox = new QComboBox(vb);
- mCalendarBox->setSizePolicy( QSizePolicy( QSizePolicy::MinimumExpanding ,QSizePolicy::Fixed ,FALSE) );
+ mCalendarBox->setSizePolicy( QSizePolicy( QSizePolicy::Preferred ,QSizePolicy::Fixed ,FALSE) );
#ifndef DESKTOP_VERSION
@@ -90,3 +90,6 @@ JournalEntry::JournalEntry(Calendar *calendar,QWidget *parent) :
vb->setStretchFactor ( mTitle, 8 );
- vb->setStretchFactor ( mCalendarBox, 3 );
+ int limit = 3;
+ if ( QApplication::desktop()->width() < 640 )
+ limit = 6;
+ vb->setStretchFactor ( mCalendarBox, limit );
//mTitleLabel->setMargin(0);
@@ -118,4 +121,10 @@ JournalEntry::JournalEntry(Calendar *calendar,QWidget *parent) :
int maxwid = mDeskWid - mMaxWidDiff;
+ if ( QApplication::desktop()->width() < 640 ) {
mTitle->setMaximumWidth( maxwid/2 +20 );
mCalendarBox->setMaximumWidth( maxwid/2 -20 );
+ } else {
+ mTitle->setMaximumWidth( (maxwid/4)*3);
+ mCalendarBox->setMaximumWidth( maxwid/2 );
+ }
+ //mCalendarBox->setMaximumWidth( maxwid/2 -20 );
mEditor->setWordWrap( KTextEdit::WidgetWidth );
@@ -139,2 +148,3 @@ void JournalEntry::resizeEvent(QResizeEvent* e )
#ifndef DESKTOP_VERSION
+
if ( mDeskWid != QApplication::desktop()->width() ) {
@@ -142,2 +152,3 @@ void JournalEntry::resizeEvent(QResizeEvent* e )
int maxwid = mDeskWid - mMaxWidDiff;
+ if ( QApplication::desktop()->width() < 640 ) {
mTitle->setMaximumWidth( maxwid/2 +20 );
@@ -145,4 +156,10 @@ void JournalEntry::resizeEvent(QResizeEvent* e )
}
- setMaximumWidth( QApplication::desktop()->width() );
- qDebug("MAXXX %d ", QApplication::desktop()->width());
+ else {
+ mTitle->setMaximumWidth( (maxwid/4)*3);
+ mCalendarBox->setMaximumWidth( maxwid/2 );
+ }
+ //mCalendarBox->setMaximumWidth( maxwid/2 -20 );
+ }
+ //setMaximumWidth( QApplication::desktop()->width() );
+ //qDebug("MAXXX %d ", QApplication::desktop()->width());
#endif