Skip to content

Commit 37b868b

Browse files
committed
code refactoring
1 parent c0ba05d commit 37b868b

22 files changed

+3231
-2752
lines changed

CREDITS.md

Lines changed: 12 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,8 @@ Thanks to all creators of loading.io for their beautifull loading icons!
4040
http://loading.io/
4141

4242
## Qt
43-
https://gitorious.org/qt-examples/qt-examples/source/sitespecificbrowser
43+
https://gitorious.org/qt-examples/qt-examples/source/sitespecificbrowser (defunct)
44+
https://github.com/richmoore/qt-examples/tree/master/sitespecificbrowser
4445

4546
https://github.com/richmoore/qt-examples/tree/master/sitespecificbrowser
4647
https://github.com/rsdn/avalon/blob/master/web_view.cpp
@@ -136,18 +137,16 @@ http://www.qtforum.org/article/18224/get-directory-path.html
136137
http://www.qtforum.org/article/15030/passing-parameters-to-the-constructor.html
137138
http://www.qtforum.org/article/27658/how-to-prevent-closing-of-a-window-by-alt-f4-solved.html
138139

139-
(developer.nokia.com is already unavailable)
140-
http://developer.nokia.com/Community/Wiki/Archived:How_to_create_a_message_box_in_Qt
141-
http://developer.nokia.com/Community/Wiki/Fullscreen_applications_on_Qt
142-
http://developer.nokia.com/Community/Wiki/Get_current_Date_and_Time_in_Qt
143-
http://developer.nokia.com/community/wiki/How_to_redirect_qDebug_output_to_a_file
144-
http://developer.nokia.com/community/wiki/How_to_write_data_to_a_file_in_Qt
145-
146-
(harmattan-dev.nokia.com is already unavailable)
147-
http://harmattan-dev.nokia.com/docs/library/html/qt4/qkeysequence.html
148-
http://harmattan-dev.nokia.com/docs/library/html/qt4/qdir.html
149-
http://harmattan-dev.nokia.com/docs/library/html/qt4/qtglobal.html
150-
http://harmattan-dev.nokia.com/docs/library/html/qtwebkit/qwebpage.html
140+
http://developer.nokia.com/Community/Wiki/Archived:How_to_create_a_message_box_in_Qt (defunct)
141+
http://developer.nokia.com/Community/Wiki/Fullscreen_applications_on_Qt (defunct)
142+
http://developer.nokia.com/Community/Wiki/Get_current_Date_and_Time_in_Qt (defunct)
143+
http://developer.nokia.com/community/wiki/How_to_redirect_qDebug_output_to_a_file (defunct)
144+
http://developer.nokia.com/community/wiki/How_to_write_data_to_a_file_in_Qt (defunct)
145+
146+
http://harmattan-dev.nokia.com/docs/library/html/qt4/qkeysequence.html (defunct)
147+
http://harmattan-dev.nokia.com/docs/library/html/qt4/qdir.html (defunct)
148+
http://harmattan-dev.nokia.com/docs/library/html/qt4/qtglobal.html (defunct)
149+
http://harmattan-dev.nokia.com/docs/library/html/qtwebkit/qwebpage.html (defunct)
151150

152151
http://stackoverflow.com/questions/14987007/what-is-the-expected-encoding-for-qwebviewsethtml
153152
http://stackoverflow.com/questions/10666998/qwebkit-display-local-webpage

perl5dbgui/perl5dbgui.html

Lines changed: 77 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,77 @@
1+
<head>
2+
<title>Perl Debugger GUI</title>
3+
<meta name='viewport' content='width=device-width, initial-scale=1'>
4+
<meta charset='utf-8'>
5+
6+
<style type='text/css'>
7+
body {
8+
text-align: center;
9+
font-family: sans-serif;
10+
font-size: 14px;
11+
color: #ffffff;
12+
background-color: #222222;
13+
-webkit-text-size-adjust: 100%;
14+
}
15+
input[type=text] {
16+
font-family: sans-serif;
17+
font-size: 14px;
18+
appearance: none;
19+
box-shadow: none;
20+
display: block;
21+
margin: 2px 2px 2px 2px;
22+
border: 1px solid white;
23+
width: 99%;
24+
border-radius: 3px;
25+
padding: 3px 3px 3px 3px;
26+
}
27+
input[type=text]:focus {
28+
outline: none;
29+
}
30+
div.btn-area {
31+
text-align: center;
32+
padding: 10px 0px 10px 0px;
33+
}
34+
.btn {
35+
background: #3498db;
36+
background-image: -webkit-linear-gradient(top, #3498db, #2980b9);
37+
background-image: -o-linear-gradient(top, #3498db, #2980b9);
38+
background-image: linear-gradient(to bottom, #3498db, #2980b9);
39+
color: #ffffff;
40+
font-family: sans-serif;
41+
font-size: 14px;
42+
text-decoration: none;
43+
-webkit-border-radius: 3;
44+
border-radius: 3px;
45+
padding: 3px 5px 3px 5px;
46+
}
47+
.btn:hover {
48+
background: #3cb0fd;
49+
background-image: -webkit-linear-gradient(top, #3cb0fd, #3498db);
50+
background-image: -o-linear-gradient(top, #3cb0fd, #3498db);
51+
background-image: linear-gradient(to bottom, #3cb0fd, #3498db);
52+
text-decoration: none;
53+
}
54+
</style>
55+
</head>
56+
57+
<body>
58+
<div class='btn-area'>
59+
<a href='http://local-pseudodomain/' class='btn' title='Home page'>Home</a>
60+
<a href='http://local-pseudodomain/perl-debugger.function?action=select-file' class='btn' title='Select file'>File</a>
61+
</div>
62+
63+
<script type='text/javascript'>
64+
function pebContextMenu() {
65+
var contextMenuObject = new Object();
66+
67+
contextMenuObject.cut = 'Cut';
68+
contextMenuObject.copy = 'Copy';
69+
contextMenuObject.paste = 'Paste';
70+
contextMenuObject.selectAll = 'Select All';
71+
72+
return JSON.stringify(contextMenuObject);
73+
}
74+
</script>
75+
</body>
76+
77+
</html>

0 commit comments

Comments
 (0)