diff options
author | Vyacheslav Blinov <blinov.vyacheslav@gmail.com> | 2011-07-15 10:24:08 +0200 |
---|---|---|
committer | Andrea Diamantini <adjam7@gmail.com> | 2011-07-15 10:24:08 +0200 |
commit | 1feccda4818f0dd7c98cf55032f05b3071135fe2 (patch) | |
tree | 95ec79aa993d5c621429dc0c5b903c55fba660f6 /src/tabpreviewpopup.h | |
parent | Change KMessageWidget message type (diff) | |
download | rekonq-1feccda4818f0dd7c98cf55032f05b3071135fe2.tar.xz |
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
Diffstat (limited to 'src/tabpreviewpopup.h')
-rw-r--r-- | src/tabpreviewpopup.h | 66 |
1 files changed, 66 insertions, 0 deletions
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 <blinov dot vyacheslav at gmail dot com> +* +* +* 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 <http://www.gnu.org/licenses/>. +* +* ============================================================ */ + +#ifndef TABPREVIEWPOPUP_H +#define TABPREVIEWPOPUP_H + +// Rekonq Includes +#include "rekonq_defines.h" + +// KDE Includes +#include <KPassivePopup> + +// 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 |