File: window.h

package info (click to toggle)
plasma-activities 6.5.4-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 728 kB
  • sloc: cpp: 3,082; xml: 244; sh: 85; haskell: 77; makefile: 5
file content (31 lines) | stat: -rw-r--r-- 547 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
/*
    SPDX-FileCopyrightText: 2013-2016 Ivan Cukic <ivan.cukic(at)kde.org>

    SPDX-License-Identifier: LGPL-2.1-only OR LGPL-3.0-only OR LicenseRef-KDE-Accepted-LGPL
*/

#pragma once

#include "slc_interface.h"
#include <QMainWindow>

namespace Ui
{
class MainWindow;
}

class Window : public QMainWindow
{
    Q_OBJECT

public:
    Window();
    ~Window();

private Q_SLOTS:
    void focusChanged(const QString &uri, const QString &mimetype, const QString &title);

private:
    Ui::MainWindow *ui;
    org::kde::ActivityManager::SLC *slc;
};