0.9beta
[feedingit] / src / qml / common / Menu.qml
1 import Qt 4.7
2
3 Item {
4 //    anchors.fill: parent;
5     width: 300; //height: 0;
6     //anchors.top: parent.top; anchors.bottom: parent.bottom
7     y: -parent.height
8
9     function getConfig() {
10         //console.log("XX\n")
11         var doc = new XMLHttpRequest();
12         doc.onreadystatechange = function() {
13             if (doc.readyState == XMLHttpRequest.DONE) {
14                 var a = doc.responseXML.documentElement;
15                 //for (var ii = 0; ii < a.childNodes.length; ++ii) {
16                 //    console.log(ii+ " " + a.childNodes[ii].firstChild.nodeValue);
17                 //}
18
19                 //console.log("node: " + a.childNodes[0].nodeValue)
20                 config.hideReadFeeds = a.childNodes[0].firstChild.nodeValue;
21                 config.hideReadArticles = a.childNodes[1].firstChild.nodeValue;
22                 //console.log("feed " + hideReadFeeds + "\n")
23                 //console.log("Articles " + hideReadArticles + "\n")
24 //                showRequestInfo("Headers -->");
25 //                showRequestInfo(doc.getAllResponseHeaders ());
26 //                showRequestInfo("Last modified -->");
27 //                showRequestInfo(doc.getResponseHeader ("Last-Modified"));
28             }
29         }
30
31         doc.open("GET", "http://localhost:8000/config");
32         doc.send();
33
34     }
35
36     Switch {
37         id: hideReadFeedsSwitch;
38         text: "Hide Read Feeds";
39         value: config.hideReadFeeds
40         onClicked: config.hideReadFeeds = (config.hideReadFeeds == "False") ? "True" : "False"
41     }
42
43     Switch {
44         id: hideReadArticlesSwitch;
45         text: "Hide Read Articles";
46         value: config.hideReadArticles
47         onClicked: config.hideReadArticles = (config.hideReadArticles == "False") ? "True" : "False"
48         anchors.top: hideReadFeedsSwitch.bottom
49     }
50
51     Rectangle {
52         id: closeButton
53         height: 50;
54         gradient: Gradient {
55             GradientStop {
56                 position: 0.00;
57                 color: "#343434";
58             }
59             GradientStop {
60                 position: 1.00;
61                 color: "#ffffff";
62             }
63         }
64         radius: 10;
65         width:  parent.width
66         anchors.top: hideReadArticlesSwitch.bottom
67
68         MouseArea {
69             id: mouseRegion
70             anchors.fill: closeButton
71             onClicked: { config.isShown = false }
72         }
73     }
74
75 //    ListView {
76 //        id: configList; model: configs; delegate: configDelegate; z: 6;
77 //        cacheBuffer: 100; width: parent.width; height: parent.height;
78 //    }
79
80 //    XmlListModel {
81
82 //        id: configs
83
84 //        //source: "http://api.flickr.com/services/feeds/photos_public.gne?"+(tags ? "tags="+tags+"&" : "")+"format=rss2"
85 //        //source: "/home/ymarcoz/feedlist.xml"
86 //        source: "http://localhost:8000/config"
87 //        query: "/xml/config"
88 //        //namespaceDeclarations: "declare namespace media=\"http://search.yahoo.com/mrss/\";"
89
90 //        XmlRole { name: "hideReadFeeds"; query: "hideReadFeeds/string()" }
91 //        XmlRole { name: "hideReadArticles"; query: "hideReadArticles/string()" }
92 //        //XmlRole { name: "catid"; query: "catid/string()"; isKey: true }
93
94 //    }
95
96 //    Component {
97 //        id: configDelegate
98
99 //        Item {
100
101 //            id: wrapper; width: wrapper.ListView.view.width; height: 86
102 //            Item {
103 //                id: moveMe
104 //                height: parent.height
105 //                Rectangle { color: "black"; opacity: index % 2 ? 0.2 : 0.4; height: 84; width: wrapper.width; y: 1 }
106 //                Rectangle {
107 //                    x: 6; y: 4; width: 77; height: parent.height - 9; color: "white"; smooth: true
108
109 //                }
110 //                Column {
111 //                    x: 92; width: wrapper.ListView.view.width - 95; y: 15; spacing: 2
112 //                    Text { text: title; color: "white"; width: parent.width; font.bold: true; elide: Text.ElideRight; style: Text.Raised; styleColor: "black" }
113 //                    //Text { text: feedname; width: parent.width; elide: Text.ElideLeft; color: "#cccccc"; style: Text.Raised; styleColor: "black" }
114 //                }
115 //            }
116 //            MouseArea { anchors.fill: wrapper; onClicked: { container.categoryClicked(catid); } }
117 //        }
118 //    }
119
120     Component.onCompleted: getConfig();
121 }