2012-09-16 20:19:10 +02:00
|
|
|
/* ============================================================
|
|
|
|
* QupZilla - WebKit based browser
|
2014-01-11 16:11:42 +01:00
|
|
|
* Copyright (C) 2010-2014 Franz Fellner <alpine.art.de@googlemail.com>
|
2012-09-16 20:19:10 +02:00
|
|
|
* David Rosca <nowrep@gmail.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 3 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* 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 LOCATIONBARPOPUP_H
|
|
|
|
#define LOCATIONBARPOPUP_H
|
2012-09-15 17:54:12 +02:00
|
|
|
|
|
|
|
#include <QFrame>
|
|
|
|
|
2014-02-26 20:03:20 +01:00
|
|
|
#include "qzcommon.h"
|
2013-02-10 12:28:53 +01:00
|
|
|
|
2014-02-19 22:12:32 +01:00
|
|
|
class QUPZILLA_EXPORT LocationBarPopup : public QFrame
|
2012-09-15 17:54:12 +02:00
|
|
|
{
|
|
|
|
public:
|
2013-02-10 12:28:53 +01:00
|
|
|
explicit LocationBarPopup(QWidget* parent);
|
|
|
|
|
2012-09-15 17:54:12 +02:00
|
|
|
void showAt(QWidget* parent);
|
|
|
|
|
2013-02-10 12:28:53 +01:00
|
|
|
void setPopupAlignment(Qt::Alignment alignment);
|
|
|
|
Qt::Alignment popupAlignment() const;
|
2012-09-15 17:54:12 +02:00
|
|
|
|
|
|
|
private:
|
|
|
|
Qt::Alignment m_alignment;
|
|
|
|
};
|
|
|
|
|
2012-09-16 20:19:10 +02:00
|
|
|
#endif // LOCATIONBARPOPUP_H
|