diff options
author | zhou_xin <zhou_xin@dl.cn.nexty-ele.com> | 2019-03-02 13:41:21 +0800 |
---|---|---|
committer | zhou_xin <zhou_xin@dl.cn.nexty-ele.com> | 2019-03-02 13:41:21 +0800 |
commit | c8788c356e6b0f9d50f639fe39e926eab2586b1c (patch) | |
tree | a3f498e3478db1a7e149de3ae686fceb407e3ca6 /app/logfile/keyboard/AbstractKeyboard.qml | |
parent | 3d46d6a0cf923eeea00052e6ed9cfd0a32965736 (diff) |
Add log function to settings
Diffstat (limited to 'app/logfile/keyboard/AbstractKeyboard.qml')
-rw-r--r-- | app/logfile/keyboard/AbstractKeyboard.qml | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/app/logfile/keyboard/AbstractKeyboard.qml b/app/logfile/keyboard/AbstractKeyboard.qml new file mode 100644 index 0000000..95a0b06 --- /dev/null +++ b/app/logfile/keyboard/AbstractKeyboard.qml @@ -0,0 +1,27 @@ +/* + * Copyright (C) 2016 The Qt Company Ltd. + * + * 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. + */ + +import QtQuick 2.6 +import QtQuick.Window 2.0 + +Item { + id: root + implicitWidth: Screen.width + implicitHeight: Screen.height / 3 + signal hide() + signal next() + property Item target +} |