author | zautrix <zautrix> | 2005-07-04 16:25:06 (UTC) |
---|---|---|
committer | zautrix <zautrix> | 2005-07-04 16:25:06 (UTC) |
commit | b0ed0793fa5d27475d8954a683ea68ca9ac0017f (patch) (side-by-side diff) | |
tree | 9d89c4a3bd9b9a87c9e600524adf54c11330f47c | |
parent | 226171366bc79927988eac10e0bf7fc3f7faea69 (diff) | |
download | kdepimpi-b0ed0793fa5d27475d8954a683ea68ca9ac0017f.zip kdepimpi-b0ed0793fa5d27475d8954a683ea68ca9ac0017f.tar.gz kdepimpi-b0ed0793fa5d27475d8954a683ea68ca9ac0017f.tar.bz2 |
fixxx
-rw-r--r-- | korganizer/journalentry.cpp | 14 |
1 files changed, 12 insertions, 2 deletions
diff --git a/korganizer/journalentry.cpp b/korganizer/journalentry.cpp index 56221dc..902e96f 100644 --- a/korganizer/journalentry.cpp +++ b/korganizer/journalentry.cpp @@ -78,3 +78,4 @@ JournalEntry::JournalEntry(Calendar *calendar,QWidget *parent) : toggleJournal->setPixmap (iconp ) ; - new QLabel(" "+i18n("Title: "),vb); + vb->setStretchFactor (new QLabel(" "+i18n("Title: "),vb),1); + vb->setStretchFactor( toggleJournal, 1 ); mTitle = new KOLocationBox(TRUE, vb, 30); @@ -82,2 +83,9 @@ JournalEntry::JournalEntry(Calendar *calendar,QWidget *parent) : mCalendarBox = new QComboBox(vb); + mCalendarBox->setSizePolicy( QSizePolicy( QSizePolicy::MinimumExpanding ,QSizePolicy::Fixed ,FALSE) ); +#ifndef DESKTOP_VERSION + mTitle->setSizeLimit( 8 ); + mCalendarBox->setSizeLimit( 8 ); +#endif + vb->setStretchFactor ( mTitle, 8 ); + vb->setStretchFactor ( mCalendarBox, 3 ); //mTitleLabel->setMargin(0); @@ -205,4 +213,5 @@ void JournalEntry::fillCalendar( int setToID ) mCalendarBox->hide(); - else + else { mCalendarBox->show(); + } } @@ -248,2 +257,3 @@ void JournalEntry::setJournal(Journal *journal, bool saveJournal ) mEditor->setReadOnly ( journal->isReadOnly() ); + mCalendarBox->setEnabled (!journal->isReadOnly() ); fillCalendar( mJournal->calID() ); |