From 1feccda4818f0dd7c98cf55032f05b3071135fe2 Mon Sep 17 00:00:00 2001 From: Vyacheslav Blinov Date: Fri, 15 Jul 2011 10:24:08 +0200 Subject: Improving tab previews Improvements: * title of the page is removed since it is visible on a tab. * widget now has a smooth 3d look'n'feel with Oxygen thanks to raisen frame * widget has rouned corners in all the styles * url of the page is elided * with compositing tab previews will be shown semitransparent with 25% alpha by default, witch can be setted to be optional later * code of tab preview is now separated from tab bar so it is more explicit REVIEWED BY: Johannes, Andrea, Pierre CCMAIL: blinov.vyacheslav@gmail.com REVIEW: 101848 --- src/tabpreviewpopup.h | 66 +++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 66 insertions(+) create mode 100644 src/tabpreviewpopup.h (limited to 'src/tabpreviewpopup.h') diff --git a/src/tabpreviewpopup.h b/src/tabpreviewpopup.h new file mode 100644 index 00000000..fe2c50ac --- /dev/null +++ b/src/tabpreviewpopup.h @@ -0,0 +1,66 @@ +/* ============================================================ +* +* This file is a part of the rekonq project +* +* Copyright (C) 2011 by Vyacheslav Blinov +* +* +* This program is free software; you can redistribute it and/or +* modify it under the terms of the GNU General Public License as +* published by the Free Software Foundation; either version 2 of +* the License or (at your option) version 3 or any later version +* accepted by the membership of KDE e.V. (or its successor approved +* by the membership of KDE e.V.), which shall act as a proxy +* defined in Section 14 of version 3 of the license. +* +* This program is distributed in the hope that it will be useful, +* but WITHOUT ANY WARRANTY; without even the implied warranty of +* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +* GNU General Public License for more details. +* +* You should have received a copy of the GNU General Public License +* along with this program. If not, see . +* +* ============================================================ */ + +#ifndef TABPREVIEWPOPUP_H +#define TABPREVIEWPOPUP_H + +// Rekonq Includes +#include "rekonq_defines.h" + +// KDE Includes +#include + +// forward declatrations +class WebTab; +class QLabel; + +class REKONQ_TESTS_EXPORT TabPreviewPopup : public KPassivePopup +{ + +public: + /** + * @brief This constructs a new Tab Preview Popup witch will create a thumbnail and title with url from WebTab object + * + * @param tab a WebTab object witch will be used to create a preview + * @param parent + **/ + explicit TabPreviewPopup(WebTab *tab, QWidget *parent = 0); + virtual ~TabPreviewPopup(); + + +private: + QLabel *m_thumbnail; + QLabel *m_url; + + void setWebTab(WebTab *tab = 0); + void setUrl(const QString& text); + void setThumbnail(const QPixmap& pixmap); + void setFixedSize(int w, int h); + static const int borderRadius = 5; + static const int borderSpacing = 2; + static const double transparency = 0.90; +}; + +#endif // TABPREVIEWPOPUP_H -- cgit v1.2.1