Dekko
NoticePopup.qml
1 /* Copyright (C) 2016 - 2017 Dan Chapman <dpniel@ubuntu.com>
2 
3  This file is part of Dekko email client for Ubuntu devices
4 
5  This program is free software; you can redistribute it and/or
6  modify it under the terms of the GNU General Public License as
7  published by the Free Software Foundation; either version 2 of
8  the License or (at your option) version 3
9 
10  This program is distributed in the hope that it will be useful,
11  but WITHOUT ANY WARRANTY; without even the implied warranty of
12  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13  GNU General Public License for more details.
14 
15  You should have received a copy of the GNU General Public License
16  along with this program. If not, see <http://www.gnu.org/licenses/>.
17 */
18 import QtQuick 2.4
19 import QtQuick.Controls.Suru 2.2
20 import Lomiri.Components 1.3
21 import Lomiri.Components.Popups 1.3
22 
23 DialogBase {
24  id: dlg
25 
26  Button {
27  text: qsTr("Ok")
28  Suru.highlightType: Suru.PositiveHighlight
29  color: Suru.highlightColor
30  onClicked: PopupUtils.close(dlg)
31  }
32 
33  Component.onCompleted: {
34  console.log(dlg.parent)
35  console.log("Notice opened")
36  }
37 }