Warning, file /plasma/plasma-activities/tests/slc-interface/window.h was not indexed or was modified since last indexation (in which case cross-reference links may be missing, inaccurate or erroneous).

0001 /*
0002     SPDX-FileCopyrightText: 2013-2016 Ivan Cukic <ivan.cukic(at)kde.org>
0003 
0004     SPDX-License-Identifier: LGPL-2.1-only OR LGPL-3.0-only OR LicenseRef-KDE-Accepted-LGPL
0005 */
0006 
0007 #pragma once
0008 
0009 #include "slc_interface.h"
0010 #include <QMainWindow>
0011 
0012 namespace Ui
0013 {
0014 class MainWindow;
0015 }
0016 
0017 class Window : public QMainWindow
0018 {
0019     Q_OBJECT
0020 
0021 public:
0022     Window();
0023     ~Window();
0024 
0025 private Q_SLOTS:
0026     void focusChanged(const QString &uri, const QString &mimetype, const QString &title);
0027 
0028 private:
0029     Ui::MainWindow *ui;
0030     org::kde::ActivityManager::SLC *slc;
0031 };