From cb4a9daca2c8bd6200cc15acc39e53771537e20f Mon Sep 17 00:00:00 2001
From: selsta <selsta@sent.at>
Date: Tue, 30 Apr 2019 01:49:51 +0200
Subject: [PATCH] RightPanel: cleanup from repo

---
 RightPanel.qml              |  40 ------------------------------------
 images/expandRightPanel.png | Bin 410 -> 0 bytes
 main.qml                    |  29 ++------------------------
 qml.qrc                     |   2 --
 4 files changed, 2 insertions(+), 69 deletions(-)
 delete mode 100644 RightPanel.qml
 delete mode 100644 images/expandRightPanel.png

diff --git a/RightPanel.qml b/RightPanel.qml
deleted file mode 100644
index 43bca34c..00000000
--- a/RightPanel.qml
+++ /dev/null
@@ -1,40 +0,0 @@
-// Copyright (c) 2014-2018, The Monero Project
-// 
-// All rights reserved.
-// 
-// Redistribution and use in source and binary forms, with or without modification, are
-// permitted provided that the following conditions are met:
-// 
-// 1. Redistributions of source code must retain the above copyright notice, this list of
-//    conditions and the following disclaimer.
-// 
-// 2. Redistributions in binary form must reproduce the above copyright notice, this list
-//    of conditions and the following disclaimer in the documentation and/or other
-//    materials provided with the distribution.
-// 
-// 3. Neither the name of the copyright holder nor the names of its contributors may be
-//    used to endorse or promote products derived from this software without specific
-//    prior written permission.
-// 
-// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY
-// EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
-// MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL
-// THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
-// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
-// PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
-// INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
-// STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF
-// THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
-
-import QtQuick 2.9
-import QtQuick.Controls 1.2
-import QtQuick.Controls.Styles 1.2
-import QtGraphicalEffects 1.0
-
-import "components"
-
-Rectangle {
-    id: root
-    width: 330
-    color: "#FFFFFF"
-}
diff --git a/images/expandRightPanel.png b/images/expandRightPanel.png
deleted file mode 100644
index 8883534bd5db6449e3d84716c1c6adff2961c23f..0000000000000000000000000000000000000000
GIT binary patch
literal 0
HcmV?d00001

literal 410
zcmeAS@N?(olHy`uVBq!ia0vp^0zk~i#0(^(9ZMvE6id3JuOkD)#(wTUiL5}rLb6AY
zF9SoB8UsT^3j@P1pisjL28L1t28LG&3=CE?7#PG0=Ijcz0ZQ-$_=LE6d3plT|NsB*
z-MwqRCdCOT&R7!U7u>KmF4_&mN%D4gVM^n!Nda;=3p^r=85p>QK$!8;-MT+OLG}_)
zUsv`=tQ>;;tOZijHUfp@JzX3_IIbrP@bdB|a<DSBU0AU++VMz`Qs-KMTm@!^h;WIO
zzuXEY0F{cBxJHyX7o{eaWaj57gk<KXG8mZa8=C1Gn%rfNx&>6B3R01hSdwa$3{sZL
zU}Ruup=)5OYhV;&WME}tW@TcaZD3?&V8HR~0zZm|-29Zxv`X9>Dwk($25OK2*$|wc
tR#Ki=l*-_klAn~S;FejGTAp8&U98|7Z1!T$rXHX=22WQ%mvv4FO#oUcZu$TK

diff --git a/main.qml b/main.qml
index 94c4a0d1..4416f7fd 100644
--- a/main.qml
+++ b/main.qml
@@ -53,7 +53,6 @@ ApplicationWindow {
     property bool hideBalanceForced: false
     property bool whatIsEnable: false
     property bool ctrlPressed: false
-    property bool rightPanelExpanded: false
     property bool osx: false
     property alias persistentSettings : persistentSettings
     property var currentWallet;
@@ -1014,7 +1013,6 @@ ApplicationWindow {
     function enableUI(enable) {
         middlePanel.enabled = enable;
         leftPanel.enabled = enable;
-        rightPanel.enabled = enable;
     }
 
     function showProcessingSplash(message) {
@@ -1128,13 +1126,6 @@ ApplicationWindow {
         checkUpdates();
     }
 
-    onRightPanelExpandedChanged: {
-        if (rightPanelExpanded) {
-            rightPanel.updateTweets()
-        }
-    }
-
-
     Settings {
         id: persistentSettings
         property string language
@@ -1387,7 +1378,6 @@ ApplicationWindow {
             State {
                 name: "wizard"
                 PropertyChanges { target: leftPanel; visible: false }
-                PropertyChanges { target: rightPanel; visible: false }
                 PropertyChanges { target: middlePanel; visible: false }
                 PropertyChanges { target: wizard; visible: true }
                 PropertyChanges { target: resizeArea; visible: true }
@@ -1396,7 +1386,6 @@ ApplicationWindow {
             }, State {
                 name: "normal"
                 PropertyChanges { target: leftPanel; visible: (isMobile)? false : true }
-                PropertyChanges { target: rightPanel; visible: true }
                 PropertyChanges { target: middlePanel; visible: true }
                 PropertyChanges { target: titleBar; basicButtonVisible: true }
                 PropertyChanges { target: wizard; visible: false }
@@ -1541,14 +1530,6 @@ ApplicationWindow {
             }
         }
 
-        RightPanel {
-            id: rightPanel
-            anchors.right: parent.right
-            anchors.bottom: parent.bottom
-            width: appWindow.rightPanelExpanded ? 300 : 0
-            visible: appWindow.rightPanelExpanded
-        }
-
 
         MiddlePanel {
             id: middlePanel
@@ -1592,7 +1573,7 @@ ApplicationWindow {
 //                value: 326
 //            }
             PropertyAction {
-                targets: [leftPanel, rightPanel]
+                target: leftPanel
                 properties: "visible"
                 value: false
             }
@@ -1610,7 +1591,6 @@ ApplicationWindow {
 
             onStopped: {
                 // middlePanel.visible = false
-                rightPanel.visible = false
                 leftPanel.visible = false
             }
         }
@@ -1628,17 +1608,12 @@ ApplicationWindow {
                 value: false
             }
             PropertyAction {
-                targets: [leftPanel, middlePanel, rightPanel, resizeArea]
+                targets: [leftPanel, middlePanel, resizeArea]
                 properties: "visible"
                 value: true
             }
 //            PropertyAction {
 //                target: appWindow
-//                properties: "width"
-//                value: rightPanelExpanded ? 1269 : 1269 - 300
-//            }
-//            PropertyAction {
-//                target: appWindow
 //                properties: "height"
 //                value: maxWindowHeight
 //            }
diff --git a/qml.qrc b/qml.qrc
index cbd65822..a0b5f643 100644
--- a/qml.qrc
+++ b/qml.qrc
@@ -2,7 +2,6 @@
     <qresource prefix="/">
         <file>main.qml</file>
         <file>LeftPanel.qml</file>
-        <file>RightPanel.qml</file>
         <file>MiddlePanel.qml</file>
         <file>images/download-white.png</file>
         <file>images/download-white@2x.png</file>
@@ -42,7 +41,6 @@
         <file>images/prevMonth.png</file>
         <file>images/prevMonth@2x.png</file>
         <file>components/TitleBar.qml</file>
-        <file>images/expandRightPanel.png</file>
         <file>images/moneroLogo2.png</file>
         <file>components/PrivacyLevelSmall.qml</file>
         <file>images/resize.png</file>