/* * Copyright 2014 Marco Martin * * 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) 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, write to the Free Software * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */ #ifndef VIEW_H #define VIEW_H #include #include "dialog.h" namespace KDeclarative { class QmlObject; } class ViewPrivate; class View : public PlasmaQuick::Dialog { Q_OBJECT Q_CLASSINFO("D-Bus Interface", "org.kde.krunner.App") Q_PROPERTY(QStringList history READ history NOTIFY historyChanged) public: explicit View(QWindow *parent = 0); virtual ~View(); void positionOnScreen(); bool freeFloating() const; void setFreeFloating(bool floating); QStringList history() const; Q_INVOKABLE void addToHistory(const QString &item); Q_SIGNALS: void historyChanged(); protected: virtual bool event(QEvent* event); virtual void showEvent(QShowEvent *event); public Q_SLOTS: void display(); void displaySingleRunner(const QString &runnerName); void displayWithClipboardContents(); void query(const QString &term); void querySingleRunner(const QString &runnerName, const QString &term); void switchUser(); void displayConfiguration(); protected Q_SLOTS: void screenGeometryChanged(); void resetScreenPos(); void displayOrHide(); void reloadConfig(); void objectIncubated(); void slotFocusWindowChanged(); private: QPoint m_customPos; KDeclarative::QmlObject *m_qmlObj; KConfigGroup m_config; qreal m_offset; bool m_floating : 1; QStringList m_history; }; #endif // View_H