summaryrefslogtreecommitdiff
path: root/src/previewimage.cpp
diff options
context:
space:
mode:
authorAndrea Diamantini <adjam7@gmail.com>2009-10-19 17:01:34 +0200
committerAndrea Diamantini <adjam7@gmail.com>2009-10-19 17:01:34 +0200
commit382d988082af6cb74c128b7011c2c0c8c9c00cfc (patch)
tree2f72320b358941816271016bf6afa3d0acf807ae /src/previewimage.cpp
parentFixing title changes.. (diff)
downloadrekonq-382d988082af6cb74c128b7011c2c0c8c9c00cfc.tar.xz
check title length fix
Diffstat (limited to 'src/previewimage.cpp')
-rw-r--r--src/previewimage.cpp18
1 files changed, 15 insertions, 3 deletions
diff --git a/src/previewimage.cpp b/src/previewimage.cpp
index 724d3744..b90a4720 100644
--- a/src/previewimage.cpp
+++ b/src/previewimage.cpp
@@ -102,6 +102,7 @@ void PreviewImage::loadUrlPreview(const QUrl& url)
{
m_pixmap.load(m_savePath);
m_imageLabel->setPixmap(m_pixmap);
+ checkTitle();
m_textLabel->setText(m_title);
}
else
@@ -131,6 +132,7 @@ void PreviewImage::snapFinished()
m_pixmap = ws->previewImage();
m_imageLabel->setPixmap(m_pixmap);
+ checkTitle();
m_textLabel->setText(m_title);
// kDebug() << "m_pixmap: " << m_pixmap.size();
@@ -167,6 +169,7 @@ void PreviewImage::showEmptyPreview()
m_imageLabel->clear();
m_textLabel->clear();
+ QHBoxLayout *layout = new QHBoxLayout(m_imageLabel);
m_button = new QToolButton(m_imageLabel);
m_button->setDefaultAction(historyMenu());
m_button->setPopupMode(QToolButton::InstantPopup);
@@ -174,9 +177,8 @@ void PreviewImage::showEmptyPreview()
m_button->setText(i18n("Add Preview"));
m_button->setAutoRaise(true);
m_button->setIconSize(QSize(48, 48));
- m_button->show();
-
-// m_textLabel->setText( i18n("Add Preview") );
+ layout->addWidget(m_button);
+ m_imageLabel->setLayout(layout);
}
@@ -333,3 +335,13 @@ QString PreviewImage::guessNameFromUrl(QUrl url)
return name;
}
+
+
+void PreviewImage::checkTitle()
+{
+ if(m_title.length() > 23)
+ {
+ m_title.truncate(20);
+ m_title += "...";
+ }
+}