2016-09-22 23:21:20 +00:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2016 Morgan McMillian <gilag@monkeystew.com>
|
|
|
|
*
|
|
|
|
* This file is apart of the Goober application, a client for pnut.io
|
|
|
|
*
|
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
import bb.cascades 1.4
|
|
|
|
|
|
|
|
TabbedPane {
|
|
|
|
id: main
|
2016-10-01 13:40:48 +00:00
|
|
|
|
|
|
|
Menu.definition: MenuDefinition {
|
|
|
|
settingsAction: SettingsActionItem {
|
|
|
|
onTriggered: {
|
2016-10-22 19:25:59 +00:00
|
|
|
var page = settingsPage.createObject()
|
|
|
|
page.reload.connect(activePane.reload)
|
|
|
|
activePane.push(page)
|
2016-10-01 13:40:48 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
actions: [
|
|
|
|
ActionItem {
|
|
|
|
title: qsTr("Logout")
|
|
|
|
imageSource: "asset:///icons/sign-out.png"
|
|
|
|
onTriggered: {
|
2016-10-01 18:18:40 +00:00
|
|
|
activePane.logout();
|
2016-10-01 13:40:48 +00:00
|
|
|
}
|
2016-11-05 00:39:28 +00:00
|
|
|
},
|
|
|
|
ActionItem {
|
|
|
|
title: qsTr("About")
|
|
|
|
imageSource: "asset:///icons/ic_info.png"
|
|
|
|
onTriggered: {
|
|
|
|
var page = aboutPage.createObject()
|
|
|
|
page.appversion = _app.appversion()
|
|
|
|
activePane.push(page)
|
|
|
|
}
|
2016-10-01 13:40:48 +00:00
|
|
|
}
|
|
|
|
]
|
|
|
|
}
|
|
|
|
|
2016-10-22 19:25:59 +00:00
|
|
|
activeTab: {
|
|
|
|
switch(_app.setting("activetab")) {
|
|
|
|
case "GlobalTab":
|
|
|
|
return globalStream
|
|
|
|
break;
|
|
|
|
case "HomeTab":
|
|
|
|
return homeStream
|
|
|
|
break;
|
2017-11-17 05:34:55 +00:00
|
|
|
case "MentionTab":
|
|
|
|
return mentionStream
|
|
|
|
break;
|
|
|
|
case "BookmarksTab":
|
|
|
|
return bookmarksStream
|
|
|
|
break;
|
2016-10-22 19:25:59 +00:00
|
|
|
default:
|
|
|
|
return globalStream
|
|
|
|
}
|
|
|
|
}
|
2016-10-21 15:42:49 +00:00
|
|
|
|
|
|
|
Tab {
|
|
|
|
id: homeStream
|
|
|
|
title: qsTr("Home")
|
2016-10-22 19:25:59 +00:00
|
|
|
objectName: "HomeTab"
|
2016-10-21 15:42:49 +00:00
|
|
|
delegate: Delegate {
|
|
|
|
StreamTab {
|
2016-10-22 14:11:28 +00:00
|
|
|
title: qsTr("Home")
|
2016-10-21 15:42:49 +00:00
|
|
|
stream_type: "Home"
|
2016-10-21 23:53:19 +00:00
|
|
|
onOpenLogin: {
|
|
|
|
loginSheet.open()
|
|
|
|
}
|
|
|
|
onCloseLogin: {
|
|
|
|
loginSheet.close()
|
|
|
|
}
|
2016-10-21 15:42:49 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
imageSource: "asset:///icons/home.png"
|
2016-10-21 19:24:29 +00:00
|
|
|
onUnreadContentCountChanged: {
|
2016-10-22 14:11:28 +00:00
|
|
|
_activeFrame.setGlobalUnread(unreadContentCount)
|
2016-10-21 19:24:29 +00:00
|
|
|
}
|
2016-10-21 15:42:49 +00:00
|
|
|
}
|
|
|
|
|
2016-10-22 19:25:59 +00:00
|
|
|
Tab {
|
|
|
|
id: mentionStream
|
|
|
|
title: qsTr("Mentions")
|
|
|
|
objectName: "MentionTab"
|
|
|
|
delegate: Delegate {
|
|
|
|
StreamTab {
|
|
|
|
title: qsTr("Mentions")
|
|
|
|
stream_type: "Mentions"
|
|
|
|
onOpenLogin: {
|
|
|
|
loginSheet.open()
|
|
|
|
}
|
|
|
|
onCloseLogin: {
|
|
|
|
loginSheet.close()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
imageSource: "asset:///icons/at.png"
|
|
|
|
onUnreadContentCountChanged: {
|
|
|
|
_activeFrame.setGlobalUnread(unreadContentCount)
|
2016-10-30 22:52:29 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
Tab {
|
|
|
|
id: bookmarksStream
|
|
|
|
title: qsTr("Bookmarks")
|
|
|
|
objectName: "BookmarksTab"
|
|
|
|
delegate: Delegate {
|
|
|
|
StreamTab {
|
|
|
|
title: qsTr("Bookmarks")
|
|
|
|
stream_type: "Bookmarks"
|
|
|
|
onOpenLogin: {
|
|
|
|
loginSheet.open()
|
|
|
|
}
|
|
|
|
onCloseLogin: {
|
|
|
|
loginSheet.close()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
imageSource: "asset:///icons/bookmark.png"
|
|
|
|
onUnreadContentCountChanged: {
|
|
|
|
_activeFrame.setGlobalUnread(unreadContentCount)
|
2016-10-22 19:25:59 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-09-22 23:21:20 +00:00
|
|
|
Tab {
|
|
|
|
id: globalStream
|
|
|
|
title: qsTr("Global")
|
2016-10-22 19:25:59 +00:00
|
|
|
objectName: "GlobalTab"
|
2016-09-22 23:21:20 +00:00
|
|
|
delegate: Delegate {
|
|
|
|
StreamTab {
|
2016-10-22 14:11:28 +00:00
|
|
|
title: qsTr("Global")
|
2016-09-22 23:21:20 +00:00
|
|
|
stream_type: "Global"
|
2016-10-21 23:53:19 +00:00
|
|
|
onOpenLogin: {
|
|
|
|
loginSheet.open()
|
|
|
|
}
|
|
|
|
onCloseLogin: {
|
|
|
|
loginSheet.close()
|
|
|
|
}
|
2016-09-22 23:21:20 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
imageSource: "asset:///icons/globe.png"
|
2016-10-21 19:24:29 +00:00
|
|
|
onUnreadContentCountChanged: {
|
|
|
|
_activeFrame.setGlobalUnread(unreadContentCount)
|
|
|
|
}
|
2016-09-22 23:21:20 +00:00
|
|
|
}
|
|
|
|
|
2016-10-22 19:25:59 +00:00
|
|
|
onActiveTabChanged: {
|
|
|
|
_app.setSetting("activetab", activeTab.objectName)
|
|
|
|
}
|
|
|
|
|
2016-10-21 23:53:19 +00:00
|
|
|
attachedObjects: [
|
|
|
|
LoginSheet {
|
|
|
|
id: loginSheet
|
|
|
|
onLogin: {
|
|
|
|
activePane.login()
|
|
|
|
}
|
2016-10-22 19:25:59 +00:00
|
|
|
},
|
|
|
|
ComponentDefinition {
|
|
|
|
id: settingsPage
|
|
|
|
source: "SettingsPage.qml"
|
2016-11-05 00:39:28 +00:00
|
|
|
},
|
|
|
|
ComponentDefinition {
|
|
|
|
id: aboutPage
|
|
|
|
source: "AboutPage.qml"
|
2016-10-21 23:53:19 +00:00
|
|
|
}
|
|
|
|
]
|
|
|
|
|
2016-11-12 23:49:32 +00:00
|
|
|
onCreationCompleted: {
|
|
|
|
var style = _app.setting("theme").toString()
|
|
|
|
if (style === "1") {
|
|
|
|
Application.themeSupport.setVisualStyle(VisualStyle.Bright)
|
|
|
|
} else if (style === "2") {
|
|
|
|
Application.themeSupport.setVisualStyle(VisualStyle.Dark)
|
|
|
|
}
|
2017-02-18 01:39:50 +00:00
|
|
|
_app.createPost.connect(activePane.createPost)
|
2016-11-12 23:49:32 +00:00
|
|
|
}
|
|
|
|
|
2016-09-22 23:21:20 +00:00
|
|
|
}
|