Main_window.html 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409
  1. <!DOCTYPE html>
  2. <html dir="ltr">
  3. <head>
  4. <meta http-equiv="content-type" content="text/html;charset=UTF-8" />
  5. <title>App/UI/Main window - XOWA</title>
  6. <link rel="shortcut icon" href="https://gnosygnu.github.io/xowa/xowa_logo.png" />
  7. <link rel="stylesheet" href="https://gnosygnu.github.io/xowa/xowa_common.css" type="text/css">
  8. <style data-source="xowa" type="text/css">
  9. .console {font-family: monospace; color: #EEEEEE ; background-color: black ; border: medium solid black;}
  10. .code
  11. ,.path
  12. ,.url {font-family: monospace; color: black ; background-color: #f9f9f9 ; border: medium solid #f9f9f9;}
  13. .bold {font-weight: 900;}
  14. </style>
  15. <style data-source="xowa" type="text/css">
  16. .console {font-family: monospace; color: #EEEEEE ; background-color: black ; border: medium solid black;}
  17. .code
  18. ,.path
  19. ,.url {font-family: monospace; color: black ; background-color: #f9f9f9 ; border: medium solid #f9f9f9;}
  20. .bold {font-weight: 900;}
  21. </style>
  22. </head>
  23. <body class="mediawiki ltr sitedir-ltr ns-0 ns-subject skin-vector action-submit vector-animateLayout" spellcheck="false">
  24. <div id="mw-page-base" class="noprint"></div>
  25. <div id="mw-head-base" class="noprint"></div>
  26. <div id="content" class="mw-body">
  27. <h1 id="firstHeading" class="firstHeading"><span>App/UI/Main window</span></h1>
  28. <div id="bodyContent" class="mw-body-content">
  29. <div id="siteSub">From XOWA: the free, open-source, offline wiki application</div>
  30. <div id="contentSub"></div>
  31. <div id="mw-content-text" lang="en" dir="ltr" class="mw-content-ltr">
  32. <p>
  33. The XOWA Window is meant to be a minimalistic representation of a web browser.
  34. </p>
  35. <div id="toc" class="toc">
  36. <div id="toctitle">
  37. <h2>
  38. Contents
  39. </h2>
  40. </div>
  41. <ul>
  42. <li class="toclevel-1 tocsection-1">
  43. <a href="#Back_button"><span class="tocnumber">1</span> <span class="toctext">Back button</span></a>
  44. </li>
  45. <li class="toclevel-1 tocsection-2">
  46. <a href="#Forward_button"><span class="tocnumber">2</span> <span class="toctext">Forward button</span></a>
  47. </li>
  48. <li class="toclevel-1 tocsection-3">
  49. <a href="#Address_bar"><span class="tocnumber">3</span> <span class="toctext">Address bar</span></a>
  50. </li>
  51. <li class="toclevel-1 tocsection-4">
  52. <a href="#Address_bar_go_button"><span class="tocnumber">4</span> <span class="toctext">Address bar go button</span></a>
  53. </li>
  54. <li class="toclevel-1 tocsection-5">
  55. <a href="#Search_box"><span class="tocnumber">5</span> <span class="toctext">Search box</span></a>
  56. </li>
  57. <li class="toclevel-1 tocsection-6">
  58. <a href="#Search_activate_button"><span class="tocnumber">6</span> <span class="toctext">Search activate button</span></a>
  59. </li>
  60. <li class="toclevel-1 tocsection-7">
  61. <a href="#Browser_box"><span class="tocnumber">7</span> <span class="toctext">Browser box</span></a>
  62. </li>
  63. <li class="toclevel-1 tocsection-8">
  64. <a href="#Find_box"><span class="tocnumber">8</span> <span class="toctext">Find box</span></a>
  65. </li>
  66. <li class="toclevel-1 tocsection-9">
  67. <a href="#Progress_box"><span class="tocnumber">9</span> <span class="toctext">Progress box</span></a>
  68. </li>
  69. <li class="toclevel-1 tocsection-10">
  70. <a href="#Note_box"><span class="tocnumber">10</span> <span class="toctext">Note box</span></a>
  71. </li>
  72. <li class="toclevel-1 tocsection-11">
  73. <a href="#Common_behavior"><span class="tocnumber">11</span> <span class="toctext">Common behavior</span></a>
  74. </li>
  75. </ul>
  76. </div>
  77. <h2>
  78. <span class="mw-headline" id="Back_button">Back button</span>
  79. </h2>
  80. <ul>
  81. <li>
  82. This button is located in the top left hand corner of the screen. It is denoted by a green arrow pointing left.
  83. </li>
  84. <li>
  85. It has the same functionality as a web browser's back button. It navigates you back to a page you left.
  86. </li>
  87. <li>
  88. To move back, click the back button or press Alt+Left.
  89. </li>
  90. </ul>
  91. <h2>
  92. <span class="mw-headline" id="Forward_button">Forward button</span>
  93. </h2>
  94. <ul>
  95. <li>
  96. This button is located in the top left hand corner of the screen. It is denoted by a green arrow pointing right.
  97. </li>
  98. <li>
  99. It has the same functionality as a web browser's forward button. It navigates you to a page you left with the back button.
  100. </li>
  101. <li>
  102. To move forward, click the forward button or press Alt+Right.
  103. </li>
  104. </ul>
  105. <h2>
  106. <span class="mw-headline" id="Address_bar">Address bar</span>
  107. </h2>
  108. <ul>
  109. <li>
  110. The address bar is located at the top of the screen.
  111. </li>
  112. <li>
  113. It can be used to navigate to other pages in the wiki.
  114. <ul>
  115. <li>
  116. For example, type "Help/Contents" into the bar and press Enter. It will take you to the main Help page.
  117. </li>
  118. <li>
  119. You can also use it to navigate to other wikis. If you type <span class='url'>simple.wikipedia.org</span> into the address bar, it will take you to the "Main Page" for Simple Wikipedia
  120. </li>
  121. </ul>
  122. </li>
  123. <li>
  124. Note that you can also press the Go button instead of Enter to select the address.
  125. </li>
  126. <li>
  127. There are other formats that can be entered into the address bar. For more information, see <a href="http://xowa.org/home/wiki/App/UI/Address_bar/Shortcuts.html" id="xolnki_2" title="App/UI/Address bar/Shortcuts">App/UI/Address_bar/Shortcuts</a>
  128. </li>
  129. <li>
  130. To select the address bar, press Alt+D.
  131. </li>
  132. <li>
  133. The address bar also has auto-completion. Try typing in "a", "b" in the address bar
  134. </li>
  135. </ul>
  136. <h2>
  137. <span class="mw-headline" id="Address_bar_go_button">Address bar go button</span>
  138. </h2>
  139. <ul>
  140. <li>
  141. The go button is located right of the address bar. It is denoted by the downward pointing green arrow.
  142. </li>
  143. <li>
  144. It can be pressed to activate the address in the address bar. Note that you can also press Enter in the address bar.
  145. </li>
  146. </ul>
  147. <h2>
  148. <span class="mw-headline" id="Search_box">Search box</span>
  149. </h2>
  150. <ul>
  151. <li>
  152. The search box allows you to find all pages in a wiki starting with the term. This is the same as the Special:AllPages search feature
  153. <ul>
  154. <li>
  155. For example, typing in "Earth" will find all pages in the wiki that start with the word "Earth".
  156. </li>
  157. </ul>
  158. </li>
  159. <li>
  160. Note that you can also press the magnifying glass button instead of Enter to activate the search.
  161. </li>
  162. </ul>
  163. <h2>
  164. <span class="mw-headline" id="Search_activate_button">Search activate button</span>
  165. </h2>
  166. <ul>
  167. <li>
  168. The search button is located right of the search box. It is denoted by the magnifying glass icon.
  169. </li>
  170. <li>
  171. It can be pressed to navigate to activate the search in the search bar.
  172. </li>
  173. </ul>
  174. <h2>
  175. <span class="mw-headline" id="Browser_box">Browser box</span>
  176. </h2>
  177. <ul>
  178. <li>
  179. The browser box takes up most of the screen.
  180. </li>
  181. <li>
  182. Its main purpose is to render all content, such as the text you're reading now.
  183. </li>
  184. </ul>
  185. <h2>
  186. <span class="mw-headline" id="Find_box">Find box</span>
  187. </h2>
  188. <ul>
  189. <li>
  190. The find box is located in the bottom left hand corner of the screen.
  191. </li>
  192. <li>
  193. It can be used to search for text on the page. If you type a word in the box, it will automatically find and highlight it in the browser box.
  194. </li>
  195. <li>
  196. The find box defaults to a hidden state. To activate it, do one of the following:
  197. <ul>
  198. <li>
  199. Press Ctrl+F
  200. </li>
  201. <li>
  202. Choose the following from the Main Menu: Edit -&gt; Find
  203. </li>
  204. <li>
  205. Right click in the browser box. Select Find from the popup menu.
  206. </li>
  207. </ul>
  208. </li>
  209. <li>
  210. To use it, do the following:
  211. <ul>
  212. <li>
  213. Type the word "box" in the find box. It will highlight the "box" in Browser box.
  214. </li>
  215. <li>
  216. Press Enter. It will now highlight the next "box" word
  217. </li>
  218. </ul>
  219. </li>
  220. <li>
  221. For more information, see <a href="http://xowa.org/home/wiki/App/UI/Find_box.html" id="xolnki_3" title="App/UI/Find box">App/UI/Find_box</a>.
  222. </li>
  223. </ul>
  224. <h2>
  225. <span class="mw-headline" id="Progress_box">Progress box</span>
  226. </h2>
  227. <ul>
  228. <li>
  229. The progress box is located at the bottom of the screen.
  230. </li>
  231. <li>
  232. It displays transient messages from the application.
  233. </li>
  234. <li>
  235. To view the info box, do one of the following
  236. <ul>
  237. <li>
  238. Press Ctrl+Alt+P
  239. </li>
  240. <li>
  241. Choose the following from the Main Menu: View -&gt; Show Progress Messages
  242. </li>
  243. <li>
  244. Middle-click the progress box
  245. </li>
  246. </ul>
  247. </li>
  248. </ul>
  249. <h2>
  250. <span class="mw-headline" id="Note_box">Note box</span>
  251. </h2>
  252. <ul>
  253. <li>
  254. The info box is located in the bottom-right hand corner of the screen.
  255. </li>
  256. <li>
  257. It displays warnings from the application. It is disabled by default, but can be enabled through <a href="http://xowa.org/home/wiki/Special:XowaCfg%3Fgrp%3Dxowa.dev.general.html" id="xolnki_4" title="Special:XowaCfg?grp=xowa.dev.general">Options: Dev - General</a>
  258. </li>
  259. <li>
  260. To select the info box, press Ctrl+Alt+N.
  261. </li>
  262. <li>
  263. To clear messages, press Ctrl+Alt+C.
  264. </li>
  265. </ul>
  266. <h2>
  267. <span class="mw-headline" id="Common_behavior">Common behavior</span>
  268. </h2>
  269. <ul>
  270. <li>
  271. The "Address bar", "Find box", "Progress box", and "Note box" are standard text boxes. As such, the following behavior will work:
  272. <ul>
  273. <li>
  274. Right clicking in the box will bring up the standard context menu of Cut, Copy, Paste, Undo, Select All
  275. </li>
  276. <li>
  277. The standard keyboard shortcuts will work
  278. <ul>
  279. <li>
  280. Ctrl+X: Cut
  281. </li>
  282. <li>
  283. Ctrl+C: Copy
  284. </li>
  285. <li>
  286. Ctrl+V: Paste
  287. </li>
  288. <li>
  289. Ctrl+A: Select All
  290. </li>
  291. <li>
  292. Ctrl+Z: Undo
  293. </li>
  294. <li>
  295. Ctrl+Shift+Z: Redo
  296. </li>
  297. </ul>
  298. </li>
  299. </ul>
  300. </li>
  301. <li>
  302. The "Browser box" has a right-click context menu. It also responds to the same keyboard shortcuts listed above.
  303. </li>
  304. </ul>
  305. </div>
  306. </div>
  307. </div>
  308. <div id="mw-head" class="noprint">
  309. <div id="left-navigation">
  310. <div id="p-namespaces" class="vectorTabs">
  311. <h3>Namespaces</h3>
  312. <ul>
  313. <li id="ca-nstab-main" class="selected"><span><a id="ca-nstab-main-href" href="index.html">Page</a></span></li>
  314. </ul>
  315. </div>
  316. </div>
  317. </div>
  318. <div id='mw-panel' class='noprint'>
  319. <div id='p-logo'>
  320. <a style="background-image: url(https://gnosygnu.github.io/xowa/xowa_logo.png);" href="http://xowa.org/" title="Visit the main page"></a>
  321. </div>
  322. <div class="portal" id='xowa-portal-home'>
  323. <h3>XOWA</h3>
  324. <div class="body">
  325. <ul>
  326. <li><a href="http://xowa.org/index.html" title='Visit the main page'>Main page</a></li>
  327. <li><a href="http://xowa.org/screenshots.html" title='See screenshots of XOWA'>Screenshots</a></li>
  328. <li><a href="https://www.youtube.com/watch?v=q0qbXYXEH6M" title="See a video of XOWA Desktop in action">Video</a></li>
  329. <li><a href="http://xowa.org/home/wiki/Help/Download_XOWA.html" title='Download the XOWA application'>Download XOWA</a></li>
  330. <li><a href="http://xowa.org/home/wiki/Dashboard/Image_databases.html" title='Download offline wikis and image databases'>Download wikis</a></li>
  331. </ul>
  332. </div>
  333. </div>
  334. <div class="portal" id='xowa-portal-started'>
  335. <h3>Getting started</h3>
  336. <div class="body">
  337. <ul>
  338. <li><a href="http://xowa.org/home/wiki/App/Setup/System_requirements.html" title='Get XOWA&apos;s system requirements'>Requirements</a></li>
  339. <li><a href="http://xowa.org/home/wiki/App/Setup/Installation.html" title='Get instructions for installing XOWA'>Installation</a></li>
  340. <li><a href="http://xowa.org/home/wiki/App/Import/Simple_Wikipedia.html" title='Learn how to set up Simple Wikipedia'>Simple Wikipedia</a></li>
  341. <li><a href="http://xowa.org/home/wiki/App/Import/English_Wikipedia.html" title='Learn how to set up English Wikipedia'>English Wikipedia</a></li>
  342. <li><a href="http://xowa.org/home/wiki/App/Import/Other_wikis.html" title='Learn how to set up other Wikipedias'>Other Wikipedias</a></li>
  343. </ul>
  344. </div>
  345. </div>
  346. <div class="portal" id='xowa-portal-android'>
  347. <h3>Android</h3>
  348. <div class="body">
  349. <ul>
  350. <li><a href="http://xowa.org/home/wiki/Android/Setup.html" title='Setup XOWA on your Android device'>Setup</a></li>
  351. <li><a href="https://www.youtube.com/watch?v=jsMTBxGweUw" title="See a video of XOWA Android in action">Video</a></li>
  352. </ul>
  353. </div>
  354. </div>
  355. <div class="portal" id='xowa-portal-help'>
  356. <h3>Help</h3>
  357. <div class="body">
  358. <ul>
  359. <li><a href="http://xowa.org/home/wiki/Help/About.html" title='Get more information about XOWA'>About</a></li>
  360. <li><a href="http://xowa.org/home/wiki/Help/Contents.html" title='View a list of help topics'>Contents</a></li>
  361. <li><a href="http://xowa.org/home/wiki/Help/Media.html" title='Read what others have written about XOWA'>Media</a></li>
  362. <li><a href="http://xowa.org/home/wiki/Help/Feedback.html" title='Questions? Comments? Leave feedback for XOWA'>Feedback</a></li>
  363. </ul>
  364. </div>
  365. </div>
  366. <div class="portal" id='xowa-portal-blog'>
  367. <h3>Blog</h3>
  368. <div class="body">
  369. <ul>
  370. <li><a href="http://xowa.org/home/wiki/Blog.html" title='Follow XOWA''s development process'>Current</a></li>
  371. </ul>
  372. </div>
  373. </div>
  374. <div class="portal" id='xowa-portal-links'>
  375. <h3>Links</h3>
  376. <div class="body">
  377. <ul>
  378. <li><a href="http://dumps.wikimedia.org/backup-index.html" title="Get wiki datababase dumps directly from Wikimedia">Wikimedia dumps</a></li>
  379. <li><a href="https://archive.org/search.php?query=xowa" title="Search archive.org for XOWA files">XOWA @ archive.org</a></li>
  380. <li><a href="http://en.wikipedia.org" title="Visit Wikipedia (and compare to XOWA!)">English Wikipedia</a></li>
  381. </ul>
  382. </div>
  383. </div>
  384. <div class="portal" id='xowa-portal-donate'>
  385. <h3>Donate</h3>
  386. <div class="body">
  387. <ul>
  388. <li><a href="https://archive.org/donate/index.php" title="Support archive.org!">archive.org</a></li><!-- listed first due to recent fire damages: http://blog.archive.org/2013/11/06/scanning-center-fire-please-help-rebuild/ -->
  389. <li><a href="https://donate.wikimedia.org/wiki/Special:FundraiserRedirector" title="Support Wikipedia!">Wikipedia</a></li>
  390. <li><a href="http://xowa.org/home/Help/Donate.html" title="Support XOWA!">XOWA</a></li>
  391. </ul>
  392. </div>
  393. </div>
  394. </div>
  395. </body>
  396. </html>