aboutsummaryrefslogtreecommitdiffstats
path: root/launcher/src/homescreenhandler.h
diff options
context:
space:
mode:
authorwang_zhiqiang <wang_zhiqiang@dl.cn.nexty-ele.com>2019-05-30 11:19:55 +0800
committerwang_zhiqiang <wang_zhiqiang@dl.cn.nexty-ele.com>2019-05-30 11:19:55 +0800
commitb17dc9b509243d72cb6448dcf5be5b8f91c52502 (patch)
tree37d837ee3a8b345e299c392deda9f7046842f356 /launcher/src/homescreenhandler.h
parent60b3b65ebaf8e0ef209df0abd6f25a1e385d5733 (diff)
update
Change-Id: Ic603b7cb155254f9b4166cf9902bbc7b519798da
Diffstat (limited to 'launcher/src/homescreenhandler.h')
-rw-r--r--launcher/src/homescreenhandler.h62
1 files changed, 0 insertions, 62 deletions
diff --git a/launcher/src/homescreenhandler.h b/launcher/src/homescreenhandler.h
deleted file mode 100644
index e612331..0000000
--- a/launcher/src/homescreenhandler.h
+++ /dev/null
@@ -1,62 +0,0 @@
-/*
- * Copyright (c) 2017 TOYOTA MOTOR CORPORATION
- * Copyright (c) 2018,2019 TOYOTA MOTOR CORPORATION
- *
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
-
-#ifndef HOMESCREENHANDLER_H
-#define HOMESCREENHANDLER_H
-
-#include <QObject>
-#include <QQuickWindow>
-#include <qlibhomescreen.h>
-#include <string>
-#include <qlibwindowmanager.h>
-
-using namespace std;
-
-class HomescreenHandler : public QObject
-{
- Q_OBJECT
-public:
- explicit HomescreenHandler(QObject *parent = 0);
- ~HomescreenHandler();
-
- void init(int port, const char* token, QLibWindowmanager *qwm, QString myname);
-
- Q_INVOKABLE void tapShortcut(QString application_id);
- Q_INVOKABLE void getRunnables(void);
- Q_INVOKABLE void hideWindow(QString application_id);
- Q_INVOKABLE void registerShortcut(QString shortcut_id, QString shortcut_name, QString position);
- Q_INVOKABLE int uninstallApplication(QString application_id);
- Q_INVOKABLE void sendAppToMeter(QString application_id);
-
- void onRep(struct json_object* reply_contents);
-
- static void* myThis;
- static void onRep_static(struct json_object* reply_contents);
- void setQuickWindow(QQuickWindow *qw);
-
-signals:
- void initAppList(QString data);
- void appListUpdate(QStringList info);
- void updateShortcutList(QStringList shortcut_list);
-
-private:
- QLibHomeScreen *mp_qhs;
- QLibWindowmanager *mp_qwm;
- QString m_myname;
-};
-
-#endif // HOMESCREENHANDLER_H