mirror of
https://bitbucket.org/smil3y/kde-workspace.git
synced 2025-02-24 19:02:51 +00:00
83 lines
2.1 KiB
C
83 lines
2.1 KiB
C
![]() |
/*
|
||
|
* Copyright 2007 Aaron Seigo <aseigo@kde.org>
|
||
|
* Copyright 2007 André Duffeck <duffeck@kde.org>
|
||
|
* Copyright 2008 Chani Armitage <chanika@gmail.com>
|
||
|
*
|
||
|
* This program is free software; you can redistribute it and/or modify
|
||
|
* it under the terms of the GNU Library General Public License as
|
||
|
* published by the Free Software Foundation; either version 2, 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 SAVERVIEW_H
|
||
|
#define SAVERVIEW_H
|
||
|
|
||
|
#include <QWeakPointer>
|
||
|
|
||
|
#include <Plasma/Plasma>
|
||
|
#include <Plasma/View>
|
||
|
|
||
|
namespace Plasma
|
||
|
{
|
||
|
class Containment;
|
||
|
class WidgetExplorer;
|
||
|
}
|
||
|
|
||
|
class SaverView : public Plasma::View
|
||
|
{
|
||
|
Q_OBJECT
|
||
|
|
||
|
public:
|
||
|
SaverView(Plasma::Containment* containment, QWidget *parent);
|
||
|
~SaverView();
|
||
|
|
||
|
bool eventFilter(QObject *watched, QEvent *event);
|
||
|
|
||
|
signals:
|
||
|
void hidden();
|
||
|
|
||
|
protected:
|
||
|
void drawBackground(QPainter *painter, const QRectF & rect);
|
||
|
void paintEvent(QPaintEvent *event);
|
||
|
|
||
|
public slots:
|
||
|
void showView();
|
||
|
void hideView();
|
||
|
void adjustSize(int screen);
|
||
|
|
||
|
/**
|
||
|
* Sets the containment for this view, which will also cause the view
|
||
|
* to track the geometry of the containment.
|
||
|
*
|
||
|
* @arg containment the containment to center the view on
|
||
|
*/
|
||
|
void setContainment(Plasma::Containment *newContainment);
|
||
|
void hideWidgetExplorer();
|
||
|
|
||
|
void enableSetupMode();
|
||
|
void disableSetupMode();
|
||
|
|
||
|
protected slots:
|
||
|
void showWidgetExplorer(); //FIXME actually this is toggle
|
||
|
void suppressShowTimeout();
|
||
|
void openToolBox();
|
||
|
void closeToolBox();
|
||
|
|
||
|
private:
|
||
|
QWeakPointer<Plasma::WidgetExplorer> m_widgetExplorer;
|
||
|
QPoint m_appletBrowserDragStart;
|
||
|
bool m_suppressShow : 1;
|
||
|
bool m_setupMode : 1;
|
||
|
bool m_init : 1;
|
||
|
};
|
||
|
|
||
|
#endif // multiple inclusion guard
|