summaryrefslogtreecommitdiff
path: root/core/pim/datebook
authorzecke <zecke>2004-01-19 18:38:28 (UTC)
committer zecke <zecke>2004-01-19 18:38:28 (UTC)
commite32b27c9f5153dfb68221712ddca612315d6c4cb (patch) (side-by-side diff)
treec43c130cf5dfc9355311890e576709ac25ae94d1 /core/pim/datebook
parentdc9c0fbaf91e3648e63e192a490c3ac033e6a7de (diff)
downloadopie-e32b27c9f5153dfb68221712ddca612315d6c4cb.zip
opie-e32b27c9f5153dfb68221712ddca612315d6c4cb.tar.gz
opie-e32b27c9f5153dfb68221712ddca612315d6c4cb.tar.bz2
Fix bug 0001248 by disabling the horizontal scrollbar.
So we truncate by screen width
Diffstat (limited to 'core/pim/datebook') (more/less context) (ignore whitespace changes)
-rw-r--r--core/pim/datebook/datebookdayallday.cpp8
1 files changed, 5 insertions, 3 deletions
diff --git a/core/pim/datebook/datebookdayallday.cpp b/core/pim/datebook/datebookdayallday.cpp
index 6014eca..2294f3c 100644
--- a/core/pim/datebook/datebookdayallday.cpp
+++ b/core/pim/datebook/datebookdayallday.cpp
@@ -40,7 +40,8 @@ DatebookdayAllday::DatebookdayAllday(DateBookDB* db, QWidget* parent, const cha
m_MainFrame = new QFrame(viewport());
m_MainFrame->setFrameStyle(QFrame::NoFrame|QFrame::Plain);
setFrameStyle(QFrame::NoFrame|QFrame::Plain);
- setResizePolicy( QScrollView::AutoOneFit );
+ setResizePolicy( QScrollView::Default );
+ setHScrollBarMode( AlwaysOff );
addChild(m_MainFrame);
datebookdayalldayLayout = new QVBoxLayout( m_MainFrame );
@@ -65,9 +66,10 @@ DatebookAlldayDisp* DatebookdayAllday::addEvent(const EffectiveEvent&ev)
{
DatebookAlldayDisp * lb;
lb = new DatebookAlldayDisp(dateBook,ev,m_MainFrame,NULL);
+ lb->show();
datebookdayalldayLayout->addWidget(lb);
subWidgets.append(lb);
-
+
connect(lb,SIGNAL(displayMe(const Event &)),lblDesc,SLOT(disp_event(const Event&)));
++item_count;
@@ -89,7 +91,7 @@ DatebookAlldayDisp::DatebookAlldayDisp(DateBookDB *db,const EffectiveEvent& ev,
setBackgroundColor(yellow);
setText(strDesc);
setFrameStyle(QFrame::Raised|QFrame::Panel);
-
+
int s = QFontMetrics(font()).height()+4;
setMaximumHeight( s );
setMinimumSize( QSize( 0, s ) );