Windows.sgm 70 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472
  1. <!-- $XConsortium: Windows.sgm /main/10 1996/09/08 22:28:37 rws $ -->
  2. <!-- (c) Copyright 1995 Digital Equipment Corporation. -->
  3. <!-- (c) Copyright 1995 Hewlett-Packard Company. -->
  4. <!-- (c) Copyright 1995 International Business Machines Corp. -->
  5. <!-- (c) Copyright 1995 Sun Microsystems, Inc. -->
  6. <!-- (c) Copyright 1995 Novell, Inc. -->
  7. <!-- (c) Copyright 1995 FUJITSU LIMITED. -->
  8. <!-- (c) Copyright 1995 Hitachi. -->
  9. <Chapter Id="UsingWindowsCI">
  10. <Title>Basic Desktop Skills</Title>
  11. <ItemizedList Mark="&bull;">
  12. <ListItem Id="HIMGR.BSK.item.1">
  13. <Para><XRef Linkend="survival-skills"> provides beginning users with fundamental
  14. information.</Para>
  15. </ListItem>
  16. <ListItem Id="HIMGR.BSK.item.2">
  17. <Para><XRef Linkend="ManagingWindowsSI"> shows you how to open, close, and
  18. manipulate windows in a workspace.</Para>
  19. </ListItem>
  20. <ListItem Id="HIMGR.BSK.item.3">
  21. <Para><XRef Linkend="UsingWorkspacesSI"> describes how to display and rename
  22. workspaces, place windows in specific workspaces, and use your
  23. keyboard to navigate within workspaces.</Para>
  24. </ListItem>
  25. <ListItem Id="HIMGR.BSK.item.4">
  26. <Para><XRef Linkend="SettingUpOrganizingWorkspacesSI"> describes various types of
  27. controls you'll come across while using the desktop.</Para>
  28. </ListItem>
  29. <ListItem Id="HIMGR.BSK.item.5">
  30. <Para><XRef Linkend="UsingMenusSI"> describes the most common menus.</Para>
  31. </ListItem>
  32. <ListItem Id="HIMGR.BSK.item.6">
  33. <Para><XRef Linkend="LogOutLockScreenTA"> describes how to log out of the desktop
  34. and how to lock your display to prevent unauthorized access.
  35. </Para>
  36. </ListItem>
  37. </ItemizedList>
  38. <Procedure>
  39. <Title>See Also</Title>
  40. <Step>
  41. <ItemizedList Mark="&bull;">
  42. <ListItem Id="HIMGR.BSK.item.7">
  43. <Para><XRef Linkend="DesktopKeyboardNav"> describes keyboard alternatives to using
  44. your mouse.
  45. </Para>
  46. </ListItem>
  47. </ItemizedList>
  48. <IndexTerm>
  49. <Primary>basic window skills</Primary>
  50. </IndexTerm>
  51. <IndexTerm>
  52. <Primary>skills, basic: window management</Primary>
  53. </IndexTerm>
  54. <IndexTerm>
  55. <Primary>window: basic skills</Primary>
  56. </IndexTerm>
  57. </Step>
  58. </Procedure>
  59. <Sect1 Id="survival-skills">
  60. <Title>Skills for Beginning Users</Title>
  61. <Para>This section describes how to:
  62. </Para>
  63. <ItemizedList Mark="&bull;" Role="tight">
  64. <ListItem Id="HIMGR.BSK.item.8">
  65. <Para>Select and raise a window
  66. </Para>
  67. </ListItem>
  68. <ListItem Id="HIMGR.BSK.item.9">
  69. <Para>Move a window
  70. </Para>
  71. </ListItem>
  72. <ListItem Id="HIMGR.BSK.item.10">
  73. <Para>Get help in any window
  74. </Para>
  75. </ListItem>
  76. <ListItem Id="HIMGR.BSK.item.11">
  77. <Para>Choose a help topic's <Emphasis>hyperlink</Emphasis> to display
  78. related information
  79. </Para>
  80. </ListItem>
  81. </ItemizedList>
  82. <Procedure>
  83. <Title>To Select and Raise a Window</Title>
  84. <IndexTerm>
  85. <Primary>window: selecting</Primary>
  86. </IndexTerm>
  87. <IndexTerm>
  88. <Primary>selecting: windows</Primary>
  89. </IndexTerm>
  90. <IndexTerm>
  91. <Primary>window: raising</Primary>
  92. </IndexTerm>
  93. <IndexTerm>
  94. <Primary>raising: windows</Primary>
  95. </IndexTerm>
  96. <Step>
  97. <Para>Selecting a window makes it active for input and raises it to the top
  98. of the window stack.</Para>
  99. <Para>With your mouse:</Para>
  100. <ItemizedList Mark="&bull;">
  101. <ListItem Id="HIMGR.BSK.item.12">
  102. <Para>Point to the window's frame and click mouse button 1.</Para>
  103. <Para><Graphic Entityref="clckSM" Id="HIMGR.BSK.grph.1"></Graphic></Para>
  104. </ListItem>
  105. </ItemizedList>
  106. <Para>With your keyboard:</Para>
  107. <ItemizedList Mark="&bull;">
  108. <ListItem Id="HIMGR.BSK.item.13">
  109. <Para>Press Alt+Tab to select the next window in the stack.
  110. Repeat until the window you want is selected.</Para>
  111. <Para>Note that on some keyboards Alt is the same as Extend Char.
  112. </Para>
  113. </ListItem>
  114. </ItemizedList>
  115. </Step>
  116. </Procedure>
  117. <Procedure>
  118. <Title>To Move a Window</Title>
  119. <IndexTerm>
  120. <Primary>window: moving</Primary>
  121. </IndexTerm>
  122. <IndexTerm>
  123. <Primary>moving windows</Primary>
  124. </IndexTerm>
  125. <Step>
  126. <Para>With your mouse:
  127. </Para>
  128. <OrderedList>
  129. <ListItem Id="HIMGR.BSK.item.14">
  130. <Para>Place the pointer over the window's title bar (the top of the window).</Para>
  131. </ListItem>
  132. <ListItem Id="HIMGR.BSK.item.15">
  133. <Para>Hold down mouse button 1 and drag the window to its new location by moving
  134. the mouse, then release the mouse button.</Para>
  135. <Para><Graphic Entityref="drgSM" Id="HIMGR.BSK.grph.2"></Graphic></Para>
  136. </ListItem>
  137. </OrderedList>
  138. <Para>With your keyboard:
  139. </Para>
  140. <OrderedList>
  141. <ListItem Id="HIMGR.BSK.item.16">
  142. <Para>Press Alt+Spacebar, then M to choose Move from the Window menu.</Para>
  143. </ListItem>
  144. <ListItem Id="HIMGR.BSK.item.17">
  145. <Para>Use the arrow keys to move the window, then press Return.</Para>
  146. <Para>Hold down Control while you press an arrow key to move the window faster.
  147. </Para>
  148. </ListItem>
  149. </OrderedList>
  150. </Step>
  151. </Procedure>
  152. <Procedure>
  153. <Title>To Get Help in Any Window</Title>
  154. <IndexTerm>
  155. <Primary>window: getting help in</Primary>
  156. </IndexTerm>
  157. <Step>
  158. <ItemizedList Mark="&bull;">
  159. <ListItem Id="HIMGR.BSK.item.18">
  160. <Para>Press F1 (or the Help key if your keyboard has one).</Para>
  161. </ListItem>
  162. </ItemizedList>
  163. </Step>
  164. </Procedure>
  165. <Procedure>
  166. <Title>To Choose a Help Topic Hyperlink</Title>
  167. <Step>
  168. <Para>&newline;&empty;<IndexTerm>
  169. <Primary>hyperlink: choosing</Primary>
  170. </IndexTerm><IndexTerm>
  171. <Primary>choosing: hyperlinks</Primary>
  172. </IndexTerm><IndexTerm>
  173. <Primary>help topic: choosing</Primary>
  174. </IndexTerm><IndexTerm>
  175. <Primary>help topic hyperlinks</Primary>
  176. </IndexTerm>
  177. Help topic hyperlinks are shown as underlined text in a help window.
  178. Choose them to display related information.</Para>
  179. <Para>With your mouse:
  180. </Para>
  181. <ItemizedList Mark="&bull;">
  182. <ListItem Id="HIMGR.BSK.item.19">
  183. <Para>Move the pointer over the underlined phrase, then click mouse button 1.
  184. </Para>
  185. </ListItem>
  186. </ItemizedList>
  187. <Para>With your keyboard:
  188. </Para>
  189. <ItemizedList Mark="&bull;">
  190. <ListItem Id="HIMGR.BSK.item.20">
  191. <Para>Press Tab and the arrow Keys to move the highlight to the hyperlink you
  192. want to choose, then press Return.
  193. </Para>
  194. </ListItem>
  195. </ItemizedList>
  196. <ItemizedList>
  197. <ListItem Id="HIMGR.BSK.item.21">
  198. <Para>If you choose a link with a <Link Type="jump" Linkend="jump-link-example">solid underline</Link> ...</Para>
  199. </ListItem>
  200. <ListItem Id="HIMGR.BSK.item.22">
  201. <Para>If you choose a link with a <Link Type="Definition" Linkend="definition-link-example">dashed underline</Link> ...
  202. </Para>
  203. </ListItem>
  204. </ItemizedList>
  205. <Para>An open-cornered box surrounding a graphic identifies the graphic as a
  206. hyperlink.</Para>
  207. </Step>
  208. </Procedure>
  209. <Procedure>
  210. <Title>To Return from a Hyperlink to the Previous Topic</Title>
  211. <IndexTerm>
  212. <Primary>Backtrack button</Primary>
  213. </IndexTerm>
  214. <IndexTerm>
  215. <Primary>help: returning from a hyperlink</Primary>
  216. </IndexTerm>
  217. <IndexTerm>
  218. <Primary>hyperlink: returning from</Primary>
  219. </IndexTerm>
  220. <Step>
  221. <ItemizedList Mark="&bull;">
  222. <ListItem Id="HIMGR.BSK.item.23">
  223. <Para>Click mouse button 1 on the Help Viewer's Backtrack button.</Para>
  224. </ListItem>
  225. <ListItem Id="HIMGR.BSK.item.24">
  226. <Para><Emphasis>Or,</Emphasis> press Control+B.
  227. </Para>
  228. </ListItem>
  229. </ItemizedList>
  230. </Step>
  231. </Procedure>
  232. <Procedure>
  233. <Title>See Also</Title>
  234. <Step>
  235. <ItemizedList Mark="&bull;" Role="tight">
  236. <ListItem Id="HIMGR.BSK.item.25">
  237. <Para><XRef Linkend="survival-skills-mouse"></Para>
  238. </ListItem>
  239. <ListItem Id="HIMGR.BSK.item.26">
  240. <Para><XRef Linkend="survival-skills-keyboard"></Para>
  241. </ListItem>
  242. <ListItem Id="HIMGR.BSK.item.27">
  243. <Para><XRef Linkend="getting-help"></Para>
  244. </ListItem>
  245. <ListItem Id="HIMGR.BSK.item.28">
  246. <Para><XRef Linkend="ManagingWindowsSI"></Para>
  247. </ListItem>
  248. <ListItem Id="HIMGR.BSK.item.29">
  249. <Para><XRef Linkend="UsingWorkspacesSI"></Para>
  250. </ListItem>
  251. <ListItem Id="HIMGR.BSK.item.30">
  252. <Para><XRef Linkend="SettingUpOrganizingWorkspacesSI"></Para>
  253. </ListItem>
  254. <ListItem Id="HIMGR.BSK.item.31">
  255. <Para><XRef Linkend="UsingMenusSI"></Para>
  256. </ListItem>
  257. </ItemizedList>
  258. </Step>
  259. </Procedure>
  260. <Sect2 Id="survival-skills-mouse">
  261. <Title>Mouse Skills</Title>
  262. <IndexTerm>
  263. <Primary>mouse: basic skills</Primary>
  264. </IndexTerm>
  265. <IndexTerm>
  266. <Primary>mouse: clicking</Primary>
  267. </IndexTerm>
  268. <IndexTerm>
  269. <Primary>mouse: double-clicking</Primary>
  270. </IndexTerm>
  271. <IndexTerm>
  272. <Primary>mouse: dragging</Primary>
  273. </IndexTerm>
  274. <IndexTerm>
  275. <Primary>clicking</Primary>
  276. </IndexTerm>
  277. <IndexTerm>
  278. <Primary>double-clicking</Primary>
  279. </IndexTerm>
  280. <IndexTerm>
  281. <Primary>dragging</Primary>
  282. </IndexTerm>
  283. <IndexTerm>
  284. <Primary>drag and drop</Primary>
  285. </IndexTerm>
  286. <Procedure>
  287. <Title>To Click</Title>
  288. <Step>
  289. <ItemizedList Mark="&bull;">
  290. <ListItem Id="HIMGR.BSK.item.32">
  291. <Para><InlineGraphic Remap="graphic" Role="right" Entityref="MouseClck"></InlineGraphic>Press and release mouse button 1 without moving the
  292. mouse.&newline;
  293. &newline;By default, mouse button 1 is the left button.
  294. </Para>
  295. </ListItem>
  296. </ItemizedList>
  297. <Para>Tasks that you perform by clicking include:</Para>
  298. <ItemizedList Mark="&bull;" Role="tight">
  299. <ListItem Id="HIMGR.BSK.item.33">
  300. <Para>Selecting a window or icon, making it "active" or "selected"
  301. </Para>
  302. </ListItem>
  303. <ListItem Id="HIMGR.BSK.item.34">
  304. <Para>Choosing a button in a dialog box or a control in the Front Panel
  305. </Para>
  306. </ListItem>
  307. <ListItem Id="HIMGR.BSK.item.35">
  308. <Para>Choosing a hyperlink within a help window
  309. </Para>
  310. </ListItem>
  311. <ListItem Id="HIMGR.BSK.item.36">
  312. <Para>Choosing an item from a menu
  313. </Para>
  314. </ListItem>
  315. </ItemizedList>
  316. </Step>
  317. </Procedure>
  318. <Procedure>
  319. <Title>To Double-click</Title>
  320. <Step>
  321. <ItemizedList Mark="&bull;">
  322. <ListItem Id="HIMGR.BSK.item.37">
  323. <Para>Press and release mouse button 1 twice in rapid succession.
  324. </Para>
  325. </ListItem>
  326. </ItemizedList>
  327. <Para>Here are some tasks you perform by double-clicking:</Para>
  328. <ItemizedList Mark="&bull;" Role="tight">
  329. <ListItem Id="HIMGR.BSK.item.38">
  330. <Para>Starting the default action for a File Manager or workspace icon
  331. </Para>
  332. </ListItem>
  333. <ListItem Id="HIMGR.BSK.item.39">
  334. <Para>Restoring a window icon (displaying the whole window again)
  335. </Para>
  336. </ListItem>
  337. <ListItem Id="HIMGR.BSK.item.40">
  338. <Para>Closing a window to remove it from the workspace -- double-click
  339. the Window menu button in the upper left corner of the window frame
  340. </Para>
  341. </ListItem>
  342. </ItemizedList>
  343. </Step>
  344. </Procedure>
  345. <Procedure>
  346. <Title>To Drag</Title>
  347. <Step>
  348. <Para>To move a window or drop an icon, use the <Emphasis>press-drag-release</Emphasis>
  349. motion.</Para>
  350. <ItemizedList Mark="&bull;">
  351. <ListItem Id="HIMGR.BSK.item.41">
  352. <Para><InlineGraphic Remap="graphic" Role="right" Entityref="MouseDrg"></InlineGraphic>Point to the window's title bar or anywhere on the icon, press
  353. <Emphasis>and hold</Emphasis> mouse button 1, drag the mouse, then release the
  354. button.&newline;
  355. </Para>
  356. </ListItem>
  357. </ItemizedList>
  358. <Para>Tasks you perform by dragging and dropping include:</Para>
  359. <ItemizedList Mark="&bull;" Role="tight">
  360. <ListItem Id="HIMGR.BSK.item.42">
  361. <Para>Moving windows and icons on your screen
  362. </Para>
  363. </ListItem>
  364. <ListItem Id="HIMGR.BSK.item.43">
  365. <Para>Moving or copying files and directories within File Manager
  366. </Para>
  367. </ListItem>
  368. <ListItem Id="HIMGR.BSK.item.44">
  369. <Para>Dragging a slider within a scroll bar to scroll the contents of a
  370. window
  371. </Para>
  372. </ListItem>
  373. <ListItem Id="HIMGR.BSK.item.45">
  374. <Para>Printing a file by dropping its icon on the Printer control in the
  375. Front Panel
  376. </Para>
  377. </ListItem>
  378. <ListItem Id="HIMGR.BSK.item.46">
  379. <Para>Deleting a file by dropping its icon on the Trash Can control in the Front
  380. Panel
  381. </Para>
  382. </ListItem>
  383. </ItemizedList>
  384. <Para>Many applications also let you drag with mouse button 2.</Para>
  385. </Step>
  386. </Procedure>
  387. <Procedure>
  388. <Title>See Also</Title>
  389. <Step>
  390. <ItemizedList Mark="&bull;" Role="tight">
  391. <ListItem Id="HIMGR.BSK.item.47">
  392. <Para><XRef Linkend="survival-skills-keyboard"></Para>
  393. </ListItem>
  394. <ListItem Id="HIMGR.BSK.item.48">
  395. <Para><XRef Linkend="getting-help"></Para>
  396. </ListItem>
  397. <ListItem Id="HIMGR.BSK.item.49">
  398. <Para><XRef Linkend="ManagingWindowsSI"></Para>
  399. </ListItem>
  400. <ListItem Id="HIMGR.BSK.item.50">
  401. <Para><XRef Linkend="UsingWorkspacesSI"></Para>
  402. </ListItem>
  403. <ListItem Id="HIMGR.BSK.item.51">
  404. <Para><XRef Linkend="SettingUpOrganizingWorkspacesSI"></Para>
  405. </ListItem>
  406. <ListItem Id="HIMGR.BSK.item.52">
  407. <Para><XRef Linkend="UsingMenusSI"></Para>
  408. </ListItem>
  409. </ItemizedList>
  410. </Step>
  411. </Procedure>
  412. </Sect2>
  413. <Sect2 Id="survival-skills-keyboard">
  414. <Title>Basic Keyboard Skills</Title>
  415. <IndexTerm>
  416. <Primary>keyboard: basic navigation</Primary>
  417. </IndexTerm>
  418. <IndexTerm>
  419. <Primary>window: moving, using the keyboard</Primary>
  420. </IndexTerm>
  421. <IndexTerm>
  422. <Primary>closing: window, using the keyboard</Primary>
  423. </IndexTerm>
  424. <IndexTerm>
  425. <Primary>navigating: keyboard</Primary>
  426. </IndexTerm>
  427. <Para>You can perform desktop tasks using your keyboard instead of your mouse.
  428. When you use your keyboard for desktop navigation, note the following:
  429. </Para>
  430. <ItemizedList Mark="&bull;" Role="tight">
  431. <IndexTerm>
  432. <Primary>Alt key</Primary>
  433. </IndexTerm>
  434. <IndexTerm>
  435. <Primary>Extend char key</Primary>
  436. </IndexTerm>
  437. <ListItem Id="HIMGR.BSK.item.53">
  438. <Para>Alt is the same as Extend char on some keyboards
  439. </Para>
  440. </ListItem>
  441. <ListItem Id="HIMGR.BSK.item.54">
  442. <Para>Return is the same as Enter on some keyboards
  443. </Para>
  444. </ListItem>
  445. <ListItem Id="HIMGR.BSK.item.55">
  446. <Para>Pressing Esc halts most interactive operations
  447. </Para>
  448. </ListItem>
  449. <ListItem Id="HIMGR.BSK.item.56">
  450. <Para>In Style Manager, the Window Behavior setting must be "Click In Window
  451. To Make Active" (this is the default value)</Para>
  452. <Para>For more information, see
  453. <OLink Type="JumpNewView" LocalInfo="Stylemgr WindowFocusBehaviorTA">
  454. To Change Window Focus Behavior</OLink> in the Style Manager help volume.
  455. </Para>
  456. </ListItem>
  457. </ItemizedList>
  458. <Para>Here's a summary of several common keyboard operations:</Para>
  459. <ItemizedList Mark="&bull;">
  460. <ListItem Id="HIMGR.BSK.item.57">
  461. <Para>To move the highlight to the next window: Press Alt+Tab.</Para>
  462. </ListItem>
  463. <ListItem Id="HIMGR.BSK.item.58">
  464. <Para>To move the keyboard highlight <Symbol Role="Variable">within</Symbol> a window: Press Tab
  465. and the arrow keys (up, down, left, and right).</Para>
  466. </ListItem>
  467. <ListItem Id="HIMGR.BSK.item.59">
  468. <Para>To close a window and remove it from the workspace Press Alt+F4.</Para>
  469. </ListItem>
  470. <ListItem Id="HIMGR.BSK.item.60">
  471. <Para>To minimize a window (turn it into an icon): Press Alt+Spacebar, then N
  472. to choose Minimize from the Window menu.</Para>
  473. </ListItem>
  474. <ListItem Id="HIMGR.BSK.item.61">
  475. <Para>To move a window: Press Alt+Spacebar, then M to choose Move from the Window
  476. menu. Press the arrow keys to move the window up, down, left, or right, then
  477. press Return.</Para>
  478. <Para>Hold down Control while you press an arrow key to move the window faster.
  479. </Para>
  480. </ListItem>
  481. </ItemizedList>
  482. <Procedure>
  483. <Title>See Also</Title>
  484. <Step>
  485. <ItemizedList Mark="&bull;" Role="tight">
  486. <ListItem Id="HIMGR.BSK.item.62">
  487. <Para><XRef Linkend="KeyboardFocusKeysTA"></Para>
  488. </ListItem>
  489. <ListItem Id="HIMGR.BSK.item.63">
  490. <Para><XRef Linkend="ChooseCommandKeyboardTA"></Para>
  491. </ListItem>
  492. <ListItem Id="HIMGR.BSK.item.64">
  493. <Para><XRef Linkend="DesktopKeyboardNav"></Para>
  494. </ListItem>
  495. </ItemizedList>
  496. <!--
  497. <s2>
  498. <abbrev>Example of a Jump Link
  499. <location id=jump-link-example>&empty;<\location>
  500. &sigspace;
  501. <otherhead>&sigspace; ... &sigspace; a related topic is displayed!
  502. Most of the time, the new topic is displayed in the same window. However,
  503. there are some hyperlinks that open a new window because they jump to the
  504. online help for another application.
  505. <procedure>To Go Back to the Previous Topic
  506. <list bullet>
  507. <item> Click mouse button 1 on the Help Viewer's Backtrack button.
  508. <item> <emph>Or, <\emph> Choose Backtrack from the Navigate menu:
  509. <list order>
  510. <item> Click mouse button 1 on Navigate in the menu bar.
  511. <item> Within the menu, click on Backtrack.
  512. <\list>
  513. <item> <emph>Or, <\emph> Press Control+B.
  514. <\list>
  515. -->
  516. </Step>
  517. </Procedure>
  518. </Sect2>
  519. </Sect1>
  520. <Sect1 Id="ManagingWindowsSI">
  521. <Title>Working with Windows</Title>
  522. <IndexTerm>
  523. <Primary>window: frame controls</Primary>
  524. </IndexTerm>
  525. <IndexTerm>
  526. <Primary>frame: window</Primary>
  527. </IndexTerm>
  528. <ItemizedList Mark="&bull;" Role="tight">
  529. <ListItem Id="HIMGR.BSK.item.65">
  530. <Para><XRef Linkend="OpenWindowTA"></Para>
  531. </ListItem>
  532. <ListItem Id="HIMGR.BSK.item.66">
  533. <Para><XRef Linkend="TurnWindowIntoIconTA"></Para>
  534. </ListItem>
  535. <ListItem Id="HIMGR.BSK.item.67">
  536. <Para><XRef Linkend="MoveWindowTA"></Para>
  537. </ListItem>
  538. <ListItem Id="HIMGR.BSK.item.68">
  539. <Para><XRef Linkend="ResizeWindowTA"></Para>
  540. </ListItem>
  541. <ListItem Id="HIMGR.BSK.item.69">
  542. <Para><XRef Linkend="RestackWindowsTA"></Para>
  543. </ListItem>
  544. <ListItem Id="HIMGR.BSK.item.70">
  545. <Para><XRef Linkend="CutAndPasteTextTA"></Para>
  546. </ListItem>
  547. </ItemizedList>
  548. <Para>&newline;&empty;</Para>
  549. <Para>A window's frame provides controls with which you can:</Para>
  550. <ItemizedList Mark="&bull;">
  551. <ListItem Id="HIMGR.BSK.item.71">
  552. <Para>Focus attention on a window, making it active for input from
  553. your mouse or keyboard. When you select a window and it becomes active,
  554. its frame changes color.</Para>
  555. </ListItem>
  556. <ListItem Id="HIMGR.BSK.item.72">
  557. <Para>Move a window.</Para>
  558. </ListItem>
  559. <ListItem Id="HIMGR.BSK.item.73">
  560. <Para>Minimize a window into an icon.</Para>
  561. </ListItem>
  562. <ListItem Id="HIMGR.BSK.item.74">
  563. <Para>Size a window.</Para>
  564. </ListItem>
  565. <ListItem Id="HIMGR.BSK.item.75">
  566. <Para>Close a window, removing it from each workspace.</Para>
  567. </ListItem>
  568. <ListItem Id="HIMGR.BSK.item.76">
  569. <Para>Display a window in other workspaces.
  570. </Para>
  571. </ListItem>
  572. </ItemizedList>
  573. <Procedure>
  574. <Title>Window Frame Controls</Title>
  575. <Step>
  576. <Para Role="indent"><InlineGraphic Remap="graphic" Entityref="WinMenButton"></InlineGraphic>Click the Window menu button to display
  577. the <Link Type="jump" Linkend="WindowMenu">Window menu</Link>. To close a window and
  578. remove it from the desktop, double-click the Window menu button.</Para>
  579. <Para Role="indent"><InlineGraphic Remap="graphic" Entityref="WinTitleBar"></InlineGraphic>The title bar shows the name of the
  580. application that owns the window. You can move a window by dragging
  581. its title bar.</Para>
  582. <Para Role="indent"><InlineGraphic Remap="graphic" Entityref="WinMin"></InlineGraphic>Click the minimize button to turn the window into
  583. a window icon. To restore a window from its icon, double-click on it.</Para>
  584. <Para Role="indent"><InlineGraphic Remap="graphic" Entityref="WinMax"></InlineGraphic>Click the maximize button to display the window in
  585. its largest allowable size. Return the window to its former size by
  586. clicking the maximize button again.</Para>
  587. <Para Role="indent"><InlineGraphic Remap="graphic" Entityref="WinResize"></InlineGraphic>Drag a resize border at any corner of a
  588. window to resize the window.</Para>
  589. </Step>
  590. </Procedure>
  591. <Procedure>
  592. <Title>See Also</Title>
  593. <Step>
  594. <ItemizedList Mark="&bull;" Role="tight">
  595. <ListItem Id="HIMGR.BSK.item.77">
  596. <Para><XRef Linkend="SettingUpOrganizingWorkspacesSI">.</Para>
  597. </ListItem>
  598. <ListItem Id="HIMGR.BSK.item.78">
  599. <Para><OLink Type="JumpNewView" LocalInfo="Stylemgr WindowFocusBehaviorTA">
  600. To Change Window Focus Behavior</OLink> in the Style Manager help volume
  601. describes how to choose settings that make windows active
  602. </Para>
  603. </ListItem>
  604. </ItemizedList>
  605. </Step>
  606. </Procedure>
  607. <Sect2 Id="OpenWindowTA">
  608. <Title>To Open and Close an Application Window</Title>
  609. <IndexTerm>
  610. <Primary>opening: window</Primary>
  611. </IndexTerm>
  612. <IndexTerm>
  613. <Primary>closing: application window</Primary>
  614. </IndexTerm>
  615. <IndexTerm>
  616. <Primary>closing: window</Primary>
  617. </IndexTerm>
  618. <IndexTerm>
  619. <Primary>window: opening</Primary>
  620. </IndexTerm>
  621. <IndexTerm>
  622. <Primary>window: closing</Primary>
  623. </IndexTerm>
  624. <IndexTerm>
  625. <Primary>exiting application</Primary>
  626. </IndexTerm>
  627. <IndexTerm>
  628. <Primary>application: exiting</Primary>
  629. </IndexTerm>
  630. <IndexTerm>
  631. <Primary>application window: opening and closing</Primary>
  632. </IndexTerm>
  633. <Procedure>
  634. <Title>To Open an Application Window</Title>
  635. <Step>
  636. <ItemizedList Mark="&bull;">
  637. <ListItem Id="HIMGR.BSK.item.79">
  638. <Para>Click the application's control in the Front Panel.</Para>
  639. </ListItem>
  640. <ListItem Id="HIMGR.BSK.item.80">
  641. <Para><Emphasis>Or:</Emphasis>
  642. </Para>
  643. <ItemizedList Mark="&bull;" Role="tight">
  644. <ListItem Id="HIMGR.BSK.item.81">
  645. <Para>From within Application Manager, click the application's icon.</Para>
  646. </ListItem>
  647. <ListItem Id="HIMGR.BSK.item.82">
  648. <Para>From within File Manager, choose an action for a selected icon.</Para>
  649. </ListItem>
  650. <ListItem Id="HIMGR.BSK.item.83">
  651. <Para>From within a terminal emulator window, type the command to start
  652. the application.
  653. </Para>
  654. </ListItem>
  655. </ItemizedList>
  656. </ListItem>
  657. </ItemizedList>
  658. </Step>
  659. </Procedure>
  660. <Procedure>
  661. <Title>To Close an Application Window</Title>
  662. <Step>
  663. <Para>Closing an application window removes it from all workspaces.
  664. </Para>
  665. <Caution>
  666. <Para>Before closing an application window, save your work.
  667. </Para>
  668. </Caution>
  669. </Step>
  670. </Procedure>
  671. <Procedure>
  672. <Title>Mouse</Title>
  673. <Step>
  674. <ItemizedList Mark="&bull;">
  675. <ListItem Id="HIMGR.BSK.item.84">
  676. <Para>Choose Close from the application's File menu.</Para>
  677. </ListItem>
  678. <ListItem Id="HIMGR.BSK.item.85">
  679. <Para><Emphasis>Or,</Emphasis> Double-click the Window menu button (in the
  680. upper right corner of the application's window).
  681. </Para>
  682. </ListItem>
  683. </ItemizedList>
  684. </Step>
  685. </Procedure>
  686. <Procedure>
  687. <Title>Keyboard</Title>
  688. <Step>
  689. <ItemizedList Mark="&bull;">
  690. <ListItem Id="HIMGR.BSK.item.86">
  691. <Para>Press Alt+F4.
  692. </Para>
  693. </ListItem>
  694. </ItemizedList>
  695. </Step>
  696. </Procedure>
  697. <Procedure>
  698. <Title>See Also</Title>
  699. <Step>
  700. <ItemizedList Mark="&bull;" Role="tight">
  701. <ListItem Id="HIMGR.BSK.item.87">
  702. <Para><OLink Type="JumpNewView" LocalInfo="Appmanager StartApplicationAppMgr">
  703. To Start an Application</OLink> in the Application Manager help volume</Para>
  704. </ListItem>
  705. <ListItem Id="HIMGR.BSK.item.88">
  706. <Para><OLink Type="JumpNewView" LocalInfo="Filemgr ToExecuteAnObjectsActionsTA">To Execute an Action for a File or Folder</OLink> in the File Manager
  707. help volume</Para>
  708. </ListItem>
  709. <ListItem Id="HIMGR.BSK.item.89">
  710. <Para><OLink Type="JumpNewView" LocalInfo="Terminal XTRunningClientsTA">
  711. To Start Applications in a dtterm Window</OLink> in the Terminal Emulator
  712. help volume
  713. </Para>
  714. </ListItem>
  715. </ItemizedList>
  716. </Step>
  717. </Procedure>
  718. </Sect2>
  719. <Sect2 Id="TurnWindowIntoIconTA">
  720. <Title>To Turn a Window into an Icon</Title>
  721. <IndexTerm>
  722. <Primary>window: iconify</Primary>
  723. </IndexTerm>
  724. <IndexTerm>
  725. <Primary>window: turning into icon</Primary>
  726. </IndexTerm>
  727. <IndexTerm>
  728. <Primary>icon: turning window into</Primary>
  729. </IndexTerm>
  730. <IndexTerm>
  731. <Primary>minimizing a window</Primary>
  732. </IndexTerm>
  733. <IndexTerm>
  734. <Primary>window: minimizing</Primary>
  735. </IndexTerm>
  736. <IndexTerm>
  737. <Primary>window: restoring</Primary>
  738. </IndexTerm>
  739. <IndexTerm>
  740. <Primary>restoring a window</Primary>
  741. </IndexTerm>
  742. <Para>To save screen space, you can minimize windows into <GlossTerm Role="baseform=window icon">window
  743. icons</GlossTerm>. This keeps the windows easily available and programs running in
  744. them continue to run.</Para>
  745. <Procedure>
  746. <Title>Mouse</Title>
  747. <Step>
  748. <Para Role="indent"><InlineGraphic Remap="graphic" Entityref="WinMin"></InlineGraphic>Click the window's minimize button.</Para>
  749. </Step>
  750. </Procedure>
  751. <Procedure>
  752. <Title>Keyboard</Title>
  753. <Step>
  754. <OrderedList>
  755. <ListItem Id="HIMGR.BSK.item.90">
  756. <Para>Press Alt+Spacebar to display the Window menu.</Para>
  757. </ListItem>
  758. <ListItem Id="HIMGR.BSK.item.91">
  759. <Para>Choose Minimize:
  760. </Para>
  761. <ItemizedList Mark="&bull;" Role="tight">
  762. <ListItem Id="HIMGR.BSK.item.92">
  763. <Para>Press Down Arrow until you select Minimize, then press Return.</Para>
  764. </ListItem>
  765. <ListItem Id="HIMGR.BSK.item.93">
  766. <Para><Emphasis>Or</Emphasis>, press N, the menu's mnemonic for Minimize.
  767. </Para>
  768. </ListItem>
  769. </ItemizedList>
  770. </ListItem>
  771. </OrderedList>
  772. </Step>
  773. </Procedure>
  774. <Procedure>
  775. <Title>To Restore a Window from an Icon</Title>
  776. <IndexTerm>
  777. <Primary>icon: restoring window from</Primary>
  778. </IndexTerm>
  779. <Step>
  780. <Para>&empty;
  781. </Para>
  782. <ItemizedList Mark="&bull;">
  783. <ListItem Id="HIMGR.BSK.item.94">
  784. <Para>With your mouse, double-click the icon.</Para>
  785. </ListItem>
  786. <ListItem Id="HIMGR.BSK.item.95">
  787. <Para>With your keyboard:
  788. </Para>
  789. <OrderedList>
  790. <ListItem Id="HIMGR.BSK.item.96">
  791. <Para>With keyboard focus on the icon, press Alt+Spacebar to display the
  792. window icon menu.</Para>
  793. </ListItem>
  794. <ListItem Id="HIMGR.BSK.item.97">
  795. <Para>Press Down Arrow to select Restore, then press Return.
  796. </Para>
  797. </ListItem>
  798. </OrderedList>
  799. </ListItem>
  800. </ItemizedList>
  801. </Step>
  802. </Procedure>
  803. <Procedure>
  804. <Title>See Also</Title>
  805. <Step>
  806. <ItemizedList Mark="&bull;" Role="tight">
  807. <ListItem Id="HIMGR.BSK.item.98">
  808. <Para><XRef Linkend="WindowMenuTA"></Para>
  809. </ListItem>
  810. <ListItem Id="HIMGR.BSK.item.99">
  811. <Para><OLink Type="JumpNewView" LocalInfo="Stylemgr WindowIconBehaviorTA">
  812. To Change Window Icon Behavior</OLink> in the Style Manager help volume
  813. describes how to select an option that opens an icon box in which to
  814. collect window icons
  815. </Para>
  816. </ListItem>
  817. </ItemizedList>
  818. </Step>
  819. </Procedure>
  820. </Sect2>
  821. <Sect2 Id="MoveWindowTA">
  822. <Title>To Move a Window or Window Icon</Title>
  823. <IndexTerm>
  824. <Primary>moving a window or window icon</Primary>
  825. </IndexTerm>
  826. <IndexTerm>
  827. <Primary>window: moving</Primary>
  828. </IndexTerm>
  829. <IndexTerm>
  830. <Primary>window icon, moving</Primary>
  831. </IndexTerm>
  832. <IndexTerm>
  833. <Primary>moving windows</Primary>
  834. </IndexTerm>
  835. <Procedure>
  836. <Title>Mouse</Title>
  837. <Step>
  838. <OrderedList>
  839. <ListItem Id="HIMGR.BSK.item.100">
  840. <Para>Point to the window's title bar or icon.</Para>
  841. </ListItem>
  842. <ListItem Id="HIMGR.BSK.item.101">
  843. <Para>Drag the window or icon to its new
  844. location.
  845. </Para>
  846. </ListItem>
  847. </OrderedList>
  848. <Para><InlineGraphic Remap="graphic" Role="left" Entityref="MoveWindow"></InlineGraphic> Move a window by dragging its
  849. title bar.</Para>
  850. <Para><Anchor Id="BSWinMvKB">&empty;
  851. </Para>
  852. </Step>
  853. </Procedure>
  854. <Procedure>
  855. <Title>Keyboard</Title>
  856. <Step>
  857. <OrderedList>
  858. <ListItem Id="HIMGR.BSK.item.102">
  859. <Para>Press Alt+Spacebar to display the Window menu.
  860. </Para>
  861. </ListItem>
  862. <ListItem Id="HIMGR.BSK.item.103">
  863. <Para>Press M, the menu's mnemonic for Move.</Para>
  864. </ListItem>
  865. <ListItem Id="HIMGR.BSK.item.104">
  866. <Para>Press the arrow keys to relocate the window or icon.</Para>
  867. <Para>Hold down Control while you press an arrow key to speed up the movement
  868. of the window or icon.</Para>
  869. </ListItem>
  870. <ListItem Id="HIMGR.BSK.item.105">
  871. <Para>When you've moved the window or icon to where you want it,
  872. press Return.
  873. </Para>
  874. </ListItem>
  875. </OrderedList>
  876. <Para>To cancel the move operation, press Esc.</Para>
  877. </Step>
  878. </Procedure>
  879. <Procedure>
  880. <Title>See Also</Title>
  881. <Step>
  882. <ItemizedList Mark="&bull;" Role="tight">
  883. <ListItem Id="HIMGR.BSK.item.106">
  884. <Para><XRef Linkend="WindowMenuTA"></Para>
  885. </ListItem>
  886. <ListItem Id="HIMGR.BSK.item.107">
  887. <Para><XRef Linkend="OccupyWindowTA">
  888. </Para>
  889. </ListItem>
  890. </ItemizedList>
  891. </Step>
  892. </Procedure>
  893. </Sect2>
  894. <Sect2 Id="ResizeWindowTA">
  895. <Title>To Resize a Window</Title>
  896. <IndexTerm>
  897. <Primary>resizing a window</Primary>
  898. </IndexTerm>
  899. <IndexTerm>
  900. <Primary>window: resizing</Primary>
  901. </IndexTerm>
  902. <Procedure>
  903. <Title>Mouse</Title>
  904. <Step>
  905. <OrderedList>
  906. <ListItem Id="HIMGR.BSK.item.108">
  907. <Para>Place the pointer on a window's border or corner.</Para>
  908. <Para>The pointer changes to a resize arrow.</Para>
  909. </ListItem>
  910. <ListItem Id="HIMGR.BSK.item.109">
  911. <Para>Drag the border or corner. An outline appears to show
  912. you the window's size.</Para>
  913. <Para>Release the mouse button when the outline shows the window's desired
  914. size.
  915. </Para>
  916. </ListItem>
  917. </OrderedList>
  918. <Para><InlineGraphic Remap="graphic" Role="left" Entityref="ResizeWindow"></InlineGraphic>&newline;&empty;
  919. &newline;Stretch or shrink a window by
  920. dragging its border or corner.</Para>
  921. </Step>
  922. </Procedure>
  923. <Procedure>
  924. <Title>Keyboard</Title>
  925. <Step>
  926. <OrderedList>
  927. <ListItem Id="HIMGR.BSK.item.110">
  928. <Para>Press Alt+Spacebar to display the Window menu.</Para>
  929. </ListItem>
  930. <ListItem Id="HIMGR.BSK.item.111">
  931. <Para>Press S, the menu's mnemonic for Size.</Para>
  932. </ListItem>
  933. <ListItem Id="HIMGR.BSK.item.112">
  934. <Para>Press the arrow keys to stretch or shrink the window.</Para>
  935. <Para>Hold down Control while you press an arrow key to size the window faster.</Para>
  936. </ListItem>
  937. <ListItem Id="HIMGR.BSK.item.113">
  938. <Para>When the outline shows the size you want, press Return.
  939. </Para>
  940. </ListItem>
  941. </OrderedList>
  942. <Para>To cancel the resize operation, press Esc.</Para>
  943. </Step>
  944. </Procedure>
  945. </Sect2>
  946. <Sect2 Id="RestackWindowsTA">
  947. <Title>To Bring a Window or Icon Forward</Title>
  948. <IndexTerm>
  949. <Primary>bringing a window forward</Primary>
  950. </IndexTerm>
  951. <IndexTerm>
  952. <Primary>workspace: changing window order in</Primary>
  953. </IndexTerm>
  954. <IndexTerm>
  955. <Primary>workspace: bringing a window forward in</Primary>
  956. </IndexTerm>
  957. <IndexTerm>
  958. <Primary>window: bringing forward</Primary>
  959. </IndexTerm>
  960. <IndexTerm>
  961. <Primary>icon: bringing forward</Primary>
  962. </IndexTerm>
  963. <Procedure>
  964. <Title>Mouse</Title>
  965. <Step>
  966. <ItemizedList Mark="&bull;">
  967. <ListItem Id="HIMGR.BSK.item.114">
  968. <Para>To bring a window or icon to the foreground of the workspace,
  969. click a visible part of the window's frame or anywhere on the icon.</Para>
  970. </ListItem>
  971. <ListItem Id="HIMGR.BSK.item.115">
  972. <Para>To bring a concealed window or icon to the foreground, choose
  973. Shuffle Up from the Workspace menu.
  974. </Para>
  975. </ListItem>
  976. </ItemizedList>
  977. </Step>
  978. </Procedure>
  979. <Procedure>
  980. <Title>Keyboard</Title>
  981. <Step>
  982. <ItemizedList Mark="&bull;">
  983. <ListItem Id="HIMGR.BSK.item.116">
  984. <Para>To bring the bottom window or icon in a workspace forward,
  985. press Alt+Up Arrow.</Para>
  986. </ListItem>
  987. <ListItem Id="HIMGR.BSK.item.117">
  988. <Para>To place the top window in the background, press Alt+Down Arrow.</Para>
  989. </ListItem>
  990. <ListItem Id="HIMGR.BSK.item.118">
  991. <Para>To cycle through and select the windows and icons in a workspace,
  992. press Alt+Tab or Alt+Esc.</Para>
  993. </ListItem>
  994. <ListItem Id="HIMGR.BSK.item.119">
  995. <Para>To cycle through and select the windows and icons in reverse
  996. order, press Shift+Alt+Tab or Shift+Alt+Esc.
  997. </Para>
  998. </ListItem>
  999. </ItemizedList>
  1000. </Step>
  1001. </Procedure>
  1002. <Procedure>
  1003. <Title>See Also</Title>
  1004. <Step>
  1005. <ItemizedList Mark="&bull;" Role="tight">
  1006. <ListItem Id="HIMGR.BSK.item.120">
  1007. <Para><XRef Linkend="WorkspaceMenuTA">
  1008. </Para>
  1009. </ListItem>
  1010. </ItemizedList>
  1011. </Step>
  1012. </Procedure>
  1013. </Sect2>
  1014. <Sect2 Id="CutAndPasteTextTA">
  1015. <Title>To Copy and Paste Text into Windows</Title>
  1016. <IndexTerm>
  1017. <Primary>copying text from windows</Primary>
  1018. </IndexTerm>
  1019. <IndexTerm>
  1020. <Primary>pasting text into windows</Primary>
  1021. </IndexTerm>
  1022. <IndexTerm>
  1023. <Primary>text: copying and pasting in windows</Primary>
  1024. </IndexTerm>
  1025. <IndexTerm>
  1026. <Primary>window: copying and pasting text</Primary>
  1027. </IndexTerm>
  1028. <Para>Copying and pasting eliminates the need to retype text.</Para>
  1029. <Para>You can copy from and paste text into:
  1030. </Para>
  1031. <ItemizedList Mark="&bull;" Role="tight">
  1032. <ListItem Id="HIMGR.BSK.item.121">
  1033. <Para>Text fields
  1034. </Para>
  1035. </ListItem>
  1036. <ListItem Id="HIMGR.BSK.item.122">
  1037. <Para>Terminal emulator windows
  1038. </Para>
  1039. </ListItem>
  1040. <ListItem Id="HIMGR.BSK.item.123">
  1041. <Para>Text Editor windows
  1042. </Para>
  1043. </ListItem>
  1044. <ListItem Id="HIMGR.BSK.item.124">
  1045. <Para>Mailer Compose windows
  1046. </Para>
  1047. </ListItem>
  1048. </ItemizedList>
  1049. <Para>You can also copy text from a Mailer Message View and a Help Viewer window
  1050. and paste it into Text Editor, terminal emulator, and Mailer Compose windows.
  1051. </Para>
  1052. <Procedure>
  1053. <Title>Selecting the Text To Be Copied</Title>
  1054. <Step>
  1055. <OrderedList>
  1056. <ListItem Id="HIMGR.BSK.item.125">
  1057. <Para>Move the pointer to the start of the text to be pasted.
  1058. </Para>
  1059. </ListItem>
  1060. <ListItem Id="HIMGR.BSK.item.126">
  1061. <Para>Drag to the end of the text to be pasted, then release the
  1062. mouse button, leaving the text highlighted.
  1063. </Para>
  1064. </ListItem>
  1065. </OrderedList>
  1066. </Step>
  1067. </Procedure>
  1068. <Procedure>
  1069. <Title>Pasting Text</Title>
  1070. <Step>
  1071. <OrderedList>
  1072. <ListItem Id="HIMGR.BSK.item.127">
  1073. <Para>Place the text insertion cursor in the target location.
  1074. </Para>
  1075. </ListItem>
  1076. <ListItem Id="HIMGR.BSK.item.128">
  1077. <Para>Click mouse button 2 to paste the text.
  1078. </Para>
  1079. </ListItem>
  1080. </OrderedList>
  1081. <Para>To deselect text, click in an empty area of the window that
  1082. has the text selected, or press Esc.
  1083. </Para>
  1084. </Step>
  1085. </Procedure>
  1086. <Procedure>
  1087. <Title>See Also</Title>
  1088. <Step>
  1089. <ItemizedList Mark="&bull;">
  1090. <ListItem Id="HIMGR.BSK.item.129">
  1091. <Para><OLink Type="JumpNewView" LocalInfo="Help4Help CopyingTextFromHelp">Copying Text from Help</OLink> in the Desktop Help System help volume
  1092. </Para>
  1093. </ListItem>
  1094. <ListItem Id="HIMGR.BSK.item.130">
  1095. <Para><OLink Type="JumpNewView" LocalInfo="Textedit ToCopyText">To Copy Text</OLink>
  1096. in the Text Editor help volume
  1097. </Para>
  1098. </ListItem>
  1099. <ListItem Id="HIMGR.BSK.item.131">
  1100. <Para><OLink Type="JumpNewView" LocalInfo="Terminal CutPasteTextTA">To Copy
  1101. and Paste Text</OLink> in the Terminal Emulator help volume
  1102. </Para>
  1103. </ListItem>
  1104. <ListItem Id="HIMGR.BSK.item.132">
  1105. <Para><OLink Type="JumpNewView" LocalInfo="Mailer MComposeEditMenu">Compose Edit
  1106. Menu</OLink> in the Mailer help volume
  1107. </Para>
  1108. </ListItem>
  1109. </ItemizedList>
  1110. </Step>
  1111. </Procedure>
  1112. </Sect2>
  1113. </Sect1>
  1114. <Sect1 Id="UsingWorkspacesSI">
  1115. <Title>Using Workspaces</Title>
  1116. <IndexTerm>
  1117. <Primary>workspaces: using</Primary>
  1118. </IndexTerm>
  1119. <IndexTerm>
  1120. <Primary>organizing windows in workspaces</Primary>
  1121. </IndexTerm>
  1122. <IndexTerm>
  1123. <Primary>using workspaces</Primary>
  1124. </IndexTerm>
  1125. <ItemizedList Mark="&bull;" Role="tight">
  1126. <ListItem Id="HIMGR.BSK.item.133">
  1127. <Para><XRef Linkend="OccupyWindowTA"></Para>
  1128. </ListItem>
  1129. <ListItem Id="HIMGR.BSK.item.134">
  1130. <Para><XRef Linkend="ChangingWorkspacesTA"></Para>
  1131. </ListItem>
  1132. <ListItem Id="HIMGR.BSK.item.135">
  1133. <Para><XRef Linkend="RenameWorkspaceTA"></Para>
  1134. </ListItem>
  1135. <ListItem Id="HIMGR.BSK.item.136">
  1136. <Para><XRef Linkend="KeyboardFocusKeysTA"></Para>
  1137. </ListItem>
  1138. </ItemizedList>
  1139. <Para>&newline;&empty;</Para>
  1140. <Para>Workspaces are like separate screens of windows. To help organize
  1141. your desktop, you can place specific applications in a particular
  1142. workspace and name that workspace accordingly. For example, a
  1143. workspace you've named "Reports" could contain the tools
  1144. you use to prepare reports, such as a spreadsheet, desktop publisher,
  1145. and graphics applications. You might set up other workspaces according
  1146. to your projects.</Para>
  1147. <Sect2 Id="OccupyWindowTA">
  1148. <Title>To Place a Window in Other Workspaces</Title>
  1149. <IndexTerm>
  1150. <Primary>placing a window in multiple workspaces</Primary>
  1151. </IndexTerm>
  1152. <IndexTerm>
  1153. <Primary>window: placing in multiple workspaces</Primary>
  1154. </IndexTerm>
  1155. <IndexTerm>
  1156. <Primary>workspace: placing window in</Primary>
  1157. </IndexTerm>
  1158. <Procedure>
  1159. <Title>Mouse</Title>
  1160. <Step>
  1161. <OrderedList>
  1162. <ListItem Id="HIMGR.BSK.item.137">
  1163. <Para>Click the Window menu button to display the Window menu.
  1164. </Para>
  1165. </ListItem>
  1166. <ListItem Id="HIMGR.BSK.item.138">
  1167. <Para>Choose Occupy Workspace from the Window menu.
  1168. </Para>
  1169. </ListItem>
  1170. <ListItem Id="HIMGR.BSK.item.139">
  1171. <Para>In the Workspaces list of the Occupy Workspace dialog box,
  1172. select the workspaces in which you want the window to appear.</Para>
  1173. <Para>To select more than one contiguous workspace name in the list, hold down
  1174. Shift while you click.</Para>
  1175. <Para>To select discontiguous workspace names in the list, hold down Control
  1176. while you click.</Para>
  1177. <Para>Click on a selected workspace to deselect it.</Para>
  1178. <Para>To place the window in every workspace, click the All Workspaces
  1179. button.
  1180. </Para>
  1181. </ListItem>
  1182. <ListItem Id="HIMGR.BSK.item.140">
  1183. <Para>Click OK.
  1184. </Para>
  1185. </ListItem>
  1186. </OrderedList>
  1187. <Para><InlineGraphic Remap="graphic" Role="left" Entityref="OccupyWorkspaceDB"></InlineGraphic>&newline;&empty;
  1188. &newline;Select the workspaces in which you want the window
  1189. to appear from the list of workspace names.
  1190. </Para>
  1191. </Step>
  1192. </Procedure>
  1193. <Procedure>
  1194. <Title>Keyboard</Title>
  1195. <Step>
  1196. <OrderedList>
  1197. <ListItem Id="HIMGR.BSK.item.141">
  1198. <Para>To display the Window menu, press Alt+Spacebar.
  1199. </Para>
  1200. </ListItem>
  1201. <ListItem Id="HIMGR.BSK.item.142">
  1202. <Para>Press the Down Arrow key to select Occupy Workspace, then press
  1203. Return.</Para>
  1204. <Para>The Occupy Workspace dialog box appears.
  1205. </Para>
  1206. </ListItem>
  1207. <ListItem Id="HIMGR.BSK.item.143">
  1208. <Para>Press Tab until the keyboard focus, as shown by the highlight, is in
  1209. the Workspaces list.
  1210. </Para>
  1211. </ListItem>
  1212. <ListItem Id="HIMGR.BSK.item.144">
  1213. <Para>Select the workspaces in which you want the window to appear:
  1214. </Para>
  1215. <ItemizedList Mark="&bull;" Role="tight">
  1216. <ListItem Id="HIMGR.BSK.item.145">
  1217. <Para>Press Down Arrow or Up Arrow to move through
  1218. the list.
  1219. </Para>
  1220. </ListItem>
  1221. <ListItem Id="HIMGR.BSK.item.146">
  1222. <Para>To select more than one workspace, press Shift+Down
  1223. Arrow or Shift+Up Arrow.
  1224. </Para>
  1225. </ListItem>
  1226. </ItemizedList>
  1227. </ListItem>
  1228. <ListItem Id="HIMGR.BSK.item.147">
  1229. <Para>Press Return.
  1230. </Para>
  1231. </ListItem>
  1232. </OrderedList>
  1233. </Step>
  1234. </Procedure>
  1235. <Procedure>
  1236. <Title>See Also</Title>
  1237. <Step>
  1238. <ItemizedList Mark="&bull;" Role="tight">
  1239. <ListItem Id="HIMGR.BSK.item.148">
  1240. <Para><XRef Linkend="WindowMenuTA"></Para>
  1241. </ListItem>
  1242. <ListItem Id="HIMGR.BSK.item.149">
  1243. <Para><XRef Linkend="ChangingWorkspacesTA"></Para>
  1244. </ListItem>
  1245. <ListItem Id="HIMGR.BSK.item.150">
  1246. <Para><XRef Linkend="KeyboardFocusKeysTA"></Para>
  1247. </ListItem>
  1248. </ItemizedList>
  1249. </Step>
  1250. </Procedure>
  1251. </Sect2>
  1252. <Sect2 Id="ChangingWorkspacesTA">
  1253. <Title>To Display Another Workspace</Title>
  1254. <IndexTerm>
  1255. <Primary>displaying another workspace</Primary>
  1256. </IndexTerm>
  1257. <IndexTerm>
  1258. <Primary>workspace: displaying another</Primary>
  1259. </IndexTerm>
  1260. <IndexTerm>
  1261. <Primary>workspace: changing to another</Primary>
  1262. </IndexTerm>
  1263. <IndexTerm>
  1264. <Primary>changing workspaces</Primary>
  1265. </IndexTerm>
  1266. <IndexTerm>
  1267. <Primary>switching workspaces</Primary>
  1268. </IndexTerm>
  1269. <Procedure>
  1270. <Title>Mouse</Title>
  1271. <Step>
  1272. <ItemizedList Mark="&bull;">
  1273. <ListItem Id="HIMGR.BSK.item.151">
  1274. <Para>Click the workspace's button in the Front Panel.
  1275. </Para>
  1276. </ListItem>
  1277. </ItemizedList>
  1278. <Para><InlineGraphic Remap="graphic" Role="left" Entityref="WorkspaceSwitch"></InlineGraphic>Switch to another
  1279. workspace by choosing its Front Panel button.</Para>
  1280. </Step>
  1281. </Procedure>
  1282. <Procedure>
  1283. <Title>Keyboard</Title>
  1284. <Step>
  1285. <OrderedList>
  1286. <ListItem Id="HIMGR.BSK.item.152">
  1287. <Para>Press Alt+Tab until the keyboard focus, as shown by the highlight,
  1288. is on the Front Panel.</Para>
  1289. </ListItem>
  1290. <ListItem Id="HIMGR.BSK.item.153">
  1291. <Para>Press the arrow keys to move the highlight to the button for the
  1292. workspace you want to display.</Para>
  1293. </ListItem>
  1294. <ListItem Id="HIMGR.BSK.item.154">
  1295. <Para>Press Return.
  1296. </Para>
  1297. </ListItem>
  1298. </OrderedList>
  1299. </Step>
  1300. </Procedure>
  1301. <Procedure>
  1302. <Title>See Also</Title>
  1303. <Step>
  1304. <ItemizedList Mark="&bull;">
  1305. <ListItem Id="HIMGR.BSK.item.155">
  1306. <Para><XRef Linkend="KeyboardFocusKeysTA"></Para>
  1307. </ListItem>
  1308. </ItemizedList>
  1309. </Step>
  1310. </Procedure>
  1311. </Sect2>
  1312. <Sect2 Id="RenameWorkspaceTA">
  1313. <Title>To Rename a Workspace</Title>
  1314. <IndexTerm>
  1315. <Primary>renaming a workspace</Primary>
  1316. </IndexTerm>
  1317. <IndexTerm>
  1318. <Primary>naming a workspace</Primary>
  1319. </IndexTerm>
  1320. <IndexTerm>
  1321. <Primary>workspace: renaming</Primary>
  1322. </IndexTerm>
  1323. <Procedure>
  1324. <Title>Mouse</Title>
  1325. <Step>
  1326. <OrderedList>
  1327. <ListItem Id="HIMGR.BSK.item.156">
  1328. <Para>Click the workspace whose name you want to change.</Para>
  1329. <Para>That workspace is displayed.</Para>
  1330. </ListItem>
  1331. <ListItem Id="HIMGR.BSK.item.157">
  1332. <Para>Click the workspace's Front Panel button again.</Para>
  1333. <Para>The button becomes a text field.</Para>
  1334. </ListItem>
  1335. <ListItem Id="HIMGR.BSK.item.158">
  1336. <Para>Edit the workspace's name in the text field.</Para>
  1337. </ListItem>
  1338. <ListItem Id="HIMGR.BSK.item.159">
  1339. <Para>Once you've renamed the workspace, press Return.
  1340. </Para>
  1341. </ListItem>
  1342. </OrderedList>
  1343. </Step>
  1344. </Procedure>
  1345. <Procedure>
  1346. <Title>Keyboard</Title>
  1347. <Step>
  1348. <OrderedList>
  1349. <ListItem Id="HIMGR.BSK.item.160">
  1350. <Para>Press Alt+Tab until the keyboard focus, as shown by the highlight,
  1351. is on the Front Panel.
  1352. </Para>
  1353. </ListItem>
  1354. <ListItem Id="HIMGR.BSK.item.161">
  1355. <Para>Press the arrow keys to move the highlight to the button for the
  1356. workspace you want to rename.
  1357. </Para>
  1358. </ListItem>
  1359. <ListItem Id="HIMGR.BSK.item.162">
  1360. <Para>Press Shift+F10 to display the workspace button's pop-up menu.</Para>
  1361. </ListItem>
  1362. <ListItem Id="HIMGR.BSK.item.163">
  1363. <Para>Press the Down Arrow key to select the Rename item, then press
  1364. Return.</Para>
  1365. <Para>The button becomes a text field.</Para>
  1366. </ListItem>
  1367. <ListItem Id="HIMGR.BSK.item.164">
  1368. <Para>Edit the workspace's name in the text field.</Para>
  1369. </ListItem>
  1370. <ListItem Id="HIMGR.BSK.item.165">
  1371. <Para>Once you've renamed the workspace, press Return.
  1372. </Para>
  1373. </ListItem>
  1374. </OrderedList>
  1375. </Step>
  1376. </Procedure>
  1377. <Procedure>
  1378. <Title>See Also</Title>
  1379. <Step>
  1380. <ItemizedList Mark="&bull;" Role="tight">
  1381. <ListItem Id="HIMGR.BSK.item.166">
  1382. <Para><XRef Linkend="ChangingWorkspacesTA"></Para>
  1383. </ListItem>
  1384. <ListItem Id="HIMGR.BSK.item.167">
  1385. <Para><XRef Linkend="EditTextFieldsTA"></Para>
  1386. </ListItem>
  1387. <ListItem Id="HIMGR.BSK.item.168">
  1388. <Para><XRef Linkend="KeyboardFocusKeysTA"></Para>
  1389. </ListItem>
  1390. </ItemizedList>
  1391. </Step>
  1392. </Procedure>
  1393. </Sect2>
  1394. <Sect2 Id="KeyboardFocusKeysTA">
  1395. <Title>Using Your Keyboard for Workspace Navigation</Title>
  1396. <IndexTerm>
  1397. <Primary>keys used to navigate in workspaces</Primary>
  1398. </IndexTerm>
  1399. <IndexTerm>
  1400. <Primary>moving in workspaces using keys</Primary>
  1401. </IndexTerm>
  1402. <IndexTerm>
  1403. <Primary>workspace: keyboard navigation</Primary>
  1404. </IndexTerm>
  1405. <IndexTerm>
  1406. <Primary>keyboard: workspace navigation</Primary>
  1407. </IndexTerm>
  1408. <Para>&newline;&empty
  1409. You can use the mouse or the keyboard to move around windows and
  1410. workspaces. If you use the keyboard, note that:</Para>
  1411. <ItemizedList Mark="&bull;" Role="tight">
  1412. <ListItem Id="HIMGR.BSK.item.169">
  1413. <Para>Alt is the same as Extend char on some keyboards.
  1414. </Para>
  1415. </ListItem>
  1416. <ListItem Id="HIMGR.BSK.item.170">
  1417. <Para>Return is the same as Enter on some keyboards.
  1418. </Para>
  1419. </ListItem>
  1420. <ListItem Id="HIMGR.BSK.item.171">
  1421. <Para>The Window Behavior setting within Style Manager must be "Click In Window
  1422. To Make Active" (this is the default).</Para>
  1423. <Para>For more information, see
  1424. <OLink Type="JumpNewView" LocalInfo="Stylemgr WindowFocusBehaviorTA"> To Change
  1425. Window Focus Behavior</OLink> in the Style Manager help volume.
  1426. </Para>
  1427. </ListItem>
  1428. </ItemizedList>
  1429. <Procedure>
  1430. <Title>Within a Workspace</Title>
  1431. <Step>
  1432. <VariableList>
  1433. <VarListEntry>
  1434. <Term><Emphasis Role="heading">Press</Emphasis></Term>
  1435. <ListItem>
  1436. <Para><Emphasis Role="heading">To move to</Emphasis></Para>
  1437. </ListItem>
  1438. </VarListEntry>
  1439. <VarListEntry>
  1440. <Term>Alt+Tab</Term>
  1441. <ListItem>
  1442. <Para>Next window or window icon
  1443. </Para>
  1444. </ListItem>
  1445. </VarListEntry>
  1446. <VarListEntry>
  1447. <Term>Shift+Alt+Tab</Term>
  1448. <ListItem>
  1449. <Para>Previous window or window icon
  1450. </Para>
  1451. </ListItem>
  1452. </VarListEntry>
  1453. <VarListEntry>
  1454. <Term>Alt+F6</Term>
  1455. <ListItem>
  1456. <Para>Next window belonging to an application, or between the
  1457. Front Panel and a subpanel
  1458. </Para>
  1459. </ListItem>
  1460. </VarListEntry>
  1461. <VarListEntry>
  1462. <Term>Shift+Alt+F6</Term>
  1463. <ListItem>
  1464. <Para>Previous window belonging to an application, or
  1465. between the Front Panel and a subpanel
  1466. </Para>
  1467. </ListItem>
  1468. </VarListEntry>
  1469. </VariableList>
  1470. </Step>
  1471. </Procedure>
  1472. <Procedure>
  1473. <Title>Within a Window</Title>
  1474. <Step>
  1475. <VariableList>
  1476. <VarListEntry>
  1477. <Term>Tab</Term>
  1478. <ListItem>
  1479. <Para>Next tab group.
  1480. </Para>
  1481. </ListItem>
  1482. </VarListEntry>
  1483. <VarListEntry>
  1484. <Term>Shift+Tab</Term>
  1485. <ListItem>
  1486. <Para>Previous tab group
  1487. </Para>
  1488. </ListItem>
  1489. </VarListEntry>
  1490. <VarListEntry>
  1491. <Term>Down Arrow</Term>
  1492. <ListItem>
  1493. <Para>Next control in a tab group
  1494. </Para>
  1495. </ListItem>
  1496. </VarListEntry>
  1497. <VarListEntry>
  1498. <Term>Up Arrow</Term>
  1499. <ListItem>
  1500. <Para>Previous control in a tab group
  1501. </Para>
  1502. </ListItem>
  1503. </VarListEntry>
  1504. <VarListEntry>
  1505. <Term>F10</Term>
  1506. <ListItem>
  1507. <Para>The window's menu bar--use the arrow keys to display menus
  1508. and move among their items
  1509. </Para>
  1510. </ListItem>
  1511. </VarListEntry>
  1512. <VarListEntry>
  1513. <Term>Shift+F10</Term>
  1514. <ListItem>
  1515. <Para>The window's pop-up menu--use the arrow keys to move
  1516. among the menu's items
  1517. </Para>
  1518. </ListItem>
  1519. </VarListEntry>
  1520. <VarListEntry>
  1521. <Term>Alt+Spacebar</Term>
  1522. <ListItem>
  1523. <Para>The Window menu
  1524. </Para>
  1525. </ListItem>
  1526. </VarListEntry>
  1527. </VariableList>
  1528. </Step>
  1529. </Procedure>
  1530. <Procedure>
  1531. <Title>Within a Menu</Title>
  1532. <Step>
  1533. <VariableList>
  1534. <VarListEntry>
  1535. <Term>Down Arrow</Term>
  1536. <ListItem>
  1537. <Para>Next menu item
  1538. </Para>
  1539. </ListItem>
  1540. </VarListEntry>
  1541. <VarListEntry>
  1542. <Term>Up Arrow</Term>
  1543. <ListItem>
  1544. <Para>Previous menu item
  1545. </Para>
  1546. </ListItem>
  1547. </VarListEntry>
  1548. </VariableList>
  1549. <Para>Press Return or Spacebar to choose a selected item from within a menu.
  1550. Press Esc to dismiss a menu.</Para>
  1551. </Step>
  1552. </Procedure>
  1553. <Procedure>
  1554. <Title>See Also</Title>
  1555. <Step>
  1556. <ItemizedList Mark="&bull;" Role="tight">
  1557. <ListItem Id="HIMGR.BSK.item.172">
  1558. <Para><XRef Linkend="DesktopKeyboardNav"></Para>
  1559. </ListItem>
  1560. </ItemizedList>
  1561. </Step>
  1562. </Procedure>
  1563. </Sect2>
  1564. </Sect1>
  1565. <Sect1 Id="SettingUpOrganizingWorkspacesSI">
  1566. <Title>Using Controls in Application Windows</Title>
  1567. <IndexTerm>
  1568. <Primary>using controls in application windows</Primary>
  1569. </IndexTerm>
  1570. <IndexTerm>
  1571. <Primary>controls: in application window</Primary>
  1572. </IndexTerm>
  1573. <IndexTerm>
  1574. <Primary>application window controls</Primary>
  1575. </IndexTerm>
  1576. <IndexTerm>
  1577. <Primary>window: using controls</Primary>
  1578. </IndexTerm>
  1579. <IndexTerm>
  1580. <Primary>window: controls</Primary>
  1581. </IndexTerm>
  1582. <IndexTerm>
  1583. <Primary>check box</Primary>
  1584. </IndexTerm>
  1585. <ItemizedList Mark="&bull;" Role="tight">
  1586. <ListItem Id="HIMGR.BSK.item.173">
  1587. <Para><XRef Linkend="ChoosePushButtonTA"></Para>
  1588. </ListItem>
  1589. <ListItem Id="HIMGR.BSK.item.174">
  1590. <Para><XRef Linkend="SelectToggleTA"></Para>
  1591. </ListItem>
  1592. <ListItem Id="HIMGR.BSK.item.175">
  1593. <Para><XRef Linkend="ScrollWindowTA"></Para>
  1594. </ListItem>
  1595. <ListItem Id="HIMGR.BSK.item.176">
  1596. <Para><XRef Linkend="SelectListItemTA"></Para>
  1597. </ListItem>
  1598. <ListItem Id="HIMGR.BSK.item.177">
  1599. <Para><XRef Linkend="EnterTextFieldsTA"></Para>
  1600. </ListItem>
  1601. <ListItem Id="HIMGR.BSK.item.178">
  1602. <Para><XRef Linkend="EditTextFieldsTA"></Para>
  1603. </ListItem>
  1604. </ItemizedList>
  1605. <Para>&newline;&empty;
  1606. Windows and dialog boxes contain controls that help you work with
  1607. applications. You use controls to manipulate objects, select choices,
  1608. or type information.</Para>
  1609. <Para>Here's a list of the most common controls:</Para>
  1610. <ItemizedList Mark="&bull;">
  1611. <ListItem Id="HIMGR.BSK.item.179">
  1612. <Para>Buttons initiate commands, start <GlossTerm Role="baseform=action">actions</GlossTerm>, or
  1613. specify options and settings. Types of buttons include
  1614. <GlossTerm Role="baseform=push button">push buttons</GlossTerm> and
  1615. <GlossTerm Role="baseform=radio button">radio buttons</GlossTerm>.</Para>
  1616. </ListItem>
  1617. <ListItem Id="HIMGR.BSK.item.180">
  1618. <Para><GlossTerm Role="baseform=check box">Check boxes</GlossTerm> specify options and settings.
  1619. </Para>
  1620. </ListItem>
  1621. <ListItem Id="HIMGR.BSK.item.181">
  1622. <Para>Text fields provide an area where you can type information.</Para>
  1623. </ListItem>
  1624. <ListItem Id="HIMGR.BSK.item.182">
  1625. <Para>Lists display a scrollable list of choices from which you can
  1626. select.</Para>
  1627. </ListItem>
  1628. <ListItem Id="HIMGR.BSK.item.183">
  1629. <Para>Sliders provide incremental selection from a range of values.
  1630. </Para>
  1631. </ListItem>
  1632. </ItemizedList>
  1633. <Sect2 Id="ChoosePushButtonTA">
  1634. <Title>To Choose a Push Button</Title>
  1635. <IndexTerm>
  1636. <Primary>choosing: button</Primary>
  1637. </IndexTerm>
  1638. <IndexTerm>
  1639. <Primary>button: choosing</Primary>
  1640. </IndexTerm>
  1641. <IndexTerm>
  1642. <Primary>push button: choosing</Primary>
  1643. </IndexTerm>
  1644. <Para>Choosing a push button immediately performs the associated command or
  1645. action. For example, choosing an OK button applies any changes made
  1646. to a dialog box, then closes it.</Para>
  1647. <Para>As a shortcut, many dialog boxes automatically give focus to the OK button
  1648. so that you can quickly specify settings and then press Return to
  1649. choose OK.</Para>
  1650. <Para><InlineGraphic Remap="graphic" Role="left" Entityref="KBFocus"></InlineGraphic>&newline;&empty;
  1651. &newline;OK, Cancel, and Help are examples of push buttons.</Para>
  1652. <Procedure>
  1653. <Title>Mouse</Title>
  1654. <Step>
  1655. <ItemizedList Mark="&bull;">
  1656. <ListItem Id="HIMGR.BSK.item.184">
  1657. <Para>Click the button.
  1658. </Para>
  1659. </ListItem>
  1660. </ItemizedList>
  1661. </Step>
  1662. </Procedure>
  1663. <Procedure>
  1664. <Title>Keyboard</Title>
  1665. <Step>
  1666. <OrderedList>
  1667. <ListItem Id="HIMGR.BSK.item.185">
  1668. <Para>Press Tab and the arrow keys until the button has the keyboard
  1669. focus, as shown by the highlight.</Para>
  1670. </ListItem>
  1671. <ListItem Id="HIMGR.BSK.item.186">
  1672. <Para>Press Return.
  1673. </Para>
  1674. </ListItem>
  1675. </OrderedList>
  1676. </Step>
  1677. </Procedure>
  1678. </Sect2>
  1679. <Sect2 Id="SelectToggleTA">
  1680. <Title>To Select a Check Box or Radio Button</Title>
  1681. <IndexTerm>
  1682. <Primary>selecting: check box or radio button</Primary>
  1683. </IndexTerm>
  1684. <IndexTerm>
  1685. <Primary>check box, selecting</Primary>
  1686. </IndexTerm>
  1687. <IndexTerm>
  1688. <Primary>radio button, selecting</Primary>
  1689. </IndexTerm>
  1690. <Para>You select a check box to specify an option or setting. You can select more
  1691. than one check box in a group.</Para>
  1692. <Para>You also use a radio button to specify an option or setting, but only
  1693. one radio button in a group can be selected at a time.</Para>
  1694. <Para><InlineGraphic Remap="graphic" Role="left" Entityref="SelectedUnselectedButtons"></InlineGraphic>&newline;&empty;</Para>
  1695. <Procedure>
  1696. <Title>Mouse</Title>
  1697. <Step>
  1698. <ItemizedList Mark="&bull;">
  1699. <ListItem Id="HIMGR.BSK.item.187">
  1700. <Para>Click the check box or radio button you want to select.
  1701. </Para>
  1702. </ListItem>
  1703. </ItemizedList>
  1704. <Para>Click a selected check box or radio button to deselect it.</Para>
  1705. </Step>
  1706. </Procedure>
  1707. <Procedure>
  1708. <Title>Keyboard</Title>
  1709. <Step>
  1710. <OrderedList>
  1711. <ListItem Id="HIMGR.BSK.item.188">
  1712. <Para>Press Tab and the arrow keys until the check box or radio button has the
  1713. keyboard focus, as shown by the highlight.</Para>
  1714. </ListItem>
  1715. <ListItem Id="HIMGR.BSK.item.189">
  1716. <Para>Press the Spacebar.
  1717. </Para>
  1718. </ListItem>
  1719. </OrderedList>
  1720. </Step>
  1721. </Procedure>
  1722. </Sect2>
  1723. <Sect2 Id="ScrollWindowTA">
  1724. <Title>To Scroll the Contents of a Window</Title>
  1725. <IndexTerm>
  1726. <Primary>scrolling window contents</Primary>
  1727. </IndexTerm>
  1728. <IndexTerm>
  1729. <Primary>window: scrolling contents of</Primary>
  1730. </IndexTerm>
  1731. <IndexTerm>
  1732. <Primary>scroll bar</Primary>
  1733. </IndexTerm>
  1734. <IndexTerm>
  1735. <Primary>using scroll bars</Primary>
  1736. </IndexTerm>
  1737. <IndexTerm>
  1738. <Primary>using sliders</Primary>
  1739. </IndexTerm>
  1740. <IndexTerm>
  1741. <Primary>sliders</Primary>
  1742. </IndexTerm>
  1743. <Para>Windows often contain more information than you can see at one time.
  1744. Use a window's <Symbol Role="Variable">scroll bar</Symbol> to bring the window's
  1745. contents into view.</Para>
  1746. <Procedure>
  1747. <Title>Mouse</Title>
  1748. <Step>
  1749. <Para><InlineGraphic Remap="graphic" Role="left" Entityref="ScrollBarParts"></InlineGraphic>&newline;&newline;Click to move up one line&newline;Click to move up one screen&newline;&empty;
  1750. &newline;&empty;
  1751. &newline;Drag the <Emphasis>slider</Emphasis> to move to a region of the window
  1752. &newline;&empty;&newline;&newline;Click to move down one screen&newline;&newline;&newline;Click to move down one line</Para>
  1753. </Step>
  1754. </Procedure>
  1755. <Procedure>
  1756. <Title>Keyboard</Title>
  1757. <Step>
  1758. <OrderedList>
  1759. <ListItem Id="HIMGR.BSK.item.190">
  1760. <Para>Press Tab to move to the window area you want to scroll.</Para>
  1761. </ListItem>
  1762. <ListItem Id="HIMGR.BSK.item.191">
  1763. <Para>Press the arrow keys, or Prev and Next, or Page Up and Page Down.</Para>
  1764. <Para>Hold down Control while you press an arrow key to scroll faster.
  1765. </Para>
  1766. </ListItem>
  1767. </OrderedList>
  1768. <Para>To use a slider:</Para>
  1769. <OrderedList>
  1770. <ListItem Id="HIMGR.BSK.item.192">
  1771. <Para>Press Tab or an arrow key to move the highlight to the slider.</Para>
  1772. </ListItem>
  1773. <ListItem Id="HIMGR.BSK.item.193">
  1774. <Para>Press Up Arrow or Down Arrow to move the slider.</Para>
  1775. <Para>Hold down Control while you press an arrow key to move the slider faster.
  1776. </Para>
  1777. </ListItem>
  1778. </OrderedList>
  1779. </Step>
  1780. </Procedure>
  1781. </Sect2>
  1782. <Sect2 Id="SelectListItemTA">
  1783. <Title>To Select a List Item</Title>
  1784. <IndexTerm>
  1785. <Primary>selecting: list item</Primary>
  1786. </IndexTerm>
  1787. <IndexTerm>
  1788. <Primary>list item, selecting</Primary>
  1789. </IndexTerm>
  1790. <IndexTerm>
  1791. <Primary>item, selecting from a list</Primary>
  1792. </IndexTerm>
  1793. <Para>A selected list item becomes highlighted. The highlighted item is acted upon
  1794. when you click a button, such as OK.
  1795. </Para>
  1796. <Procedure>
  1797. <Title>Mouse</Title>
  1798. <Step>
  1799. <OrderedList>
  1800. <ListItem Id="HIMGR.BSK.item.194">
  1801. <Para>Click the list item.</Para>
  1802. <Para>In a multiple-selection list, hold down the Shift key while you click
  1803. the items.</Para>
  1804. <Para>To deselect an item, click it again.</Para>
  1805. </ListItem>
  1806. <ListItem Id="HIMGR.BSK.item.195">
  1807. <Para>Click a button, such as OK.
  1808. </Para>
  1809. </ListItem>
  1810. </OrderedList>
  1811. <Para>In some lists, double-clicking an item selects the item and chooses the
  1812. default command.</Para>
  1813. <Para><InlineGraphic Remap="graphic" Role="left" Entityref="ListSelection"></InlineGraphic>&empty;&newline;</Para>
  1814. </Step>
  1815. </Procedure>
  1816. <Procedure>
  1817. <Title>Keyboard</Title>
  1818. <Step>
  1819. <OrderedList>
  1820. <ListItem Id="HIMGR.BSK.item.196">
  1821. <Para>Press Tab to move to the list.</Para>
  1822. </ListItem>
  1823. <ListItem Id="HIMGR.BSK.item.197">
  1824. <Para>Select the list item:
  1825. </Para>
  1826. <ItemizedList Mark="&bull;">
  1827. <ListItem Id="HIMGR.BSK.item.198">
  1828. <Para>In a single-selection list, use the arrow keys to reach your
  1829. choice.</Para>
  1830. </ListItem>
  1831. <ListItem Id="HIMGR.BSK.item.199">
  1832. <Para>In a multiple-selection list, use the arrow keys to reach your
  1833. first selection, then press Shift+Up Arrow or Shift+Down Arrow.</Para>
  1834. <Para>To deselect an item, press Spacebar.
  1835. </Para>
  1836. </ListItem>
  1837. </ItemizedList>
  1838. </ListItem>
  1839. <ListItem Id="HIMGR.BSK.item.200">
  1840. <Para>Press Tab to move to a button, such as OK or Apply, then press
  1841. Return.
  1842. </Para>
  1843. </ListItem>
  1844. </OrderedList>
  1845. </Step>
  1846. </Procedure>
  1847. </Sect2>
  1848. <Sect2 Id="EnterTextFieldsTA">
  1849. <Title>To Enter Text into an Empty Field</Title>
  1850. <IndexTerm>
  1851. <Primary>entering text in an empty field</Primary>
  1852. </IndexTerm>
  1853. <IndexTerm>
  1854. <Primary>text: entering into empty field</Primary>
  1855. </IndexTerm>
  1856. <IndexTerm>
  1857. <Primary>field: entering text into</Primary>
  1858. </IndexTerm>
  1859. <Procedure>
  1860. <Title>Mouse</Title>
  1861. <Step>
  1862. <OrderedList>
  1863. <ListItem Id="HIMGR.BSK.item.201">
  1864. <Para>Click the field to display the text insertion cursor.</Para>
  1865. </ListItem>
  1866. <ListItem Id="HIMGR.BSK.item.202">
  1867. <Para>Type the text.</Para>
  1868. <Para>In many dialog boxes, pressing Return completes the text
  1869. entry and activates the default button, such as OK or Apply.
  1870. </Para>
  1871. </ListItem>
  1872. </OrderedList>
  1873. <Para><InlineGraphic Remap="graphic" Role="left" Entityref="TextField"></InlineGraphic>&newline;&newline;A text field accepts information you type.</Para>
  1874. </Step>
  1875. </Procedure>
  1876. <Procedure>
  1877. <Title>Keyboard</Title>
  1878. <Step>
  1879. <OrderedList>
  1880. <ListItem Id="HIMGR.BSK.item.203">
  1881. <Para>Press Tab, Shift+Tab, or the arrow keys until you reach the
  1882. text field.</Para>
  1883. <Para>A blinking text insertion cursor indicates that the text field has
  1884. the keyboard focus.</Para>
  1885. </ListItem>
  1886. <ListItem Id="HIMGR.BSK.item.204">
  1887. <Para>Type the text, then press Return.
  1888. </Para>
  1889. </ListItem>
  1890. </OrderedList>
  1891. </Step>
  1892. </Procedure>
  1893. <Procedure>
  1894. <Title>See Also</Title>
  1895. <Step>
  1896. <ItemizedList Mark="&bull;" Role="tight">
  1897. <ListItem Id="HIMGR.BSK.item.205">
  1898. <Para><XRef Linkend="EditTextFieldsTA">.
  1899. </Para>
  1900. </ListItem>
  1901. </ItemizedList>
  1902. </Step>
  1903. </Procedure>
  1904. </Sect2>
  1905. <Sect2 Id="EditTextFieldsTA">
  1906. <Title>To Edit Text in a Field</Title>
  1907. <IndexTerm>
  1908. <Primary>editing text in a field</Primary>
  1909. </IndexTerm>
  1910. <IndexTerm>
  1911. <Primary>text: editing in a field</Primary>
  1912. </IndexTerm>
  1913. <IndexTerm>
  1914. <Primary>field: editing text in</Primary>
  1915. </IndexTerm>
  1916. <IndexTerm>
  1917. <Primary>selecting: text in a field</Primary>
  1918. </IndexTerm>
  1919. <Procedure>
  1920. <Title>Mouse</Title>
  1921. <Step>
  1922. <OrderedList>
  1923. <ListItem Id="HIMGR.BSK.item.206">
  1924. <Para>Select the text in the field to edit:</Para>
  1925. <VariableList>
  1926. <VarListEntry>
  1927. <Term>Characters</Term>
  1928. <ListItem>
  1929. <Para>Drag from the first character to the last character
  1930. </Para>
  1931. </ListItem>
  1932. </VarListEntry>
  1933. <VarListEntry>
  1934. <Term>Word</Term>
  1935. <ListItem>
  1936. <Para>Double-click the word
  1937. </Para>
  1938. </ListItem>
  1939. </VarListEntry>
  1940. <VarListEntry>
  1941. <Term>Line</Term>
  1942. <ListItem>
  1943. <Para>Triple-click the line
  1944. </Para>
  1945. </ListItem>
  1946. </VarListEntry>
  1947. <VarListEntry>
  1948. <Term>Multiline field</Term>
  1949. <ListItem>
  1950. <Para>Quadruple-click the field
  1951. </Para>
  1952. </ListItem>
  1953. </VarListEntry>
  1954. </VariableList>
  1955. <Para>To deselect text, click an empty area in the window.</Para>
  1956. </ListItem>
  1957. <ListItem Id="HIMGR.BSK.item.207">
  1958. <Para>Type the replacement text.
  1959. </Para>
  1960. </ListItem>
  1961. </OrderedList>
  1962. </Step>
  1963. </Procedure>
  1964. <Procedure>
  1965. <Title>Keyboard</Title>
  1966. <Step>
  1967. <OrderedList>
  1968. <ListItem Id="HIMGR.BSK.item.208">
  1969. <Para>Press Tab, Shift+Tab, or the arrow keys until you reach the
  1970. field.</Para>
  1971. </ListItem>
  1972. <ListItem Id="HIMGR.BSK.item.209">
  1973. <Para>Use the editing keys to edit the field's contents, then type
  1974. the replacement text.</Para>
  1975. <VariableList>
  1976. <VarListEntry>
  1977. <Term><Emphasis Role="heading">Editing key</Emphasis></Term>
  1978. <ListItem>
  1979. <Para><Emphasis Role="heading">Function</Emphasis></Para>
  1980. </ListItem>
  1981. </VarListEntry>
  1982. <VarListEntry>
  1983. <Term>Arrow key</Term>
  1984. <ListItem>
  1985. <Para>Move the text insertion cursor
  1986. </Para>
  1987. </ListItem>
  1988. </VarListEntry>
  1989. <VarListEntry>
  1990. <Term>Backspace</Term>
  1991. <ListItem>
  1992. <Para>Delete the character to the left of the cursor
  1993. </Para>
  1994. </ListItem>
  1995. </VarListEntry>
  1996. <VarListEntry>
  1997. <Term>Delete or Delete char</Term>
  1998. <ListItem>
  1999. <Para>Delete the character to the right of the cursor
  2000. </Para>
  2001. </ListItem>
  2002. </VarListEntry>
  2003. <VarListEntry>
  2004. <Term>Control+Delete or Control+Delete char</Term>
  2005. <ListItem>
  2006. <Para>&newline;Delete from the cursor to the end of the line
  2007. </Para>
  2008. </ListItem>
  2009. </VarListEntry>
  2010. </VariableList>
  2011. </ListItem>
  2012. </OrderedList>
  2013. </Step>
  2014. </Procedure>
  2015. </Sect2>
  2016. </Sect1>
  2017. <Sect1 Id="UsingMenusSI">
  2018. <Title>Using Menus</Title>
  2019. <IndexTerm>
  2020. <Primary>menu: using</Primary>
  2021. </IndexTerm>
  2022. <IndexTerm>
  2023. <Primary>using menus</Primary>
  2024. </IndexTerm>
  2025. <IndexTerm>
  2026. <Primary>menu: pop-up</Primary>
  2027. </IndexTerm>
  2028. <IndexTerm>
  2029. <Primary>menu: pull-down</Primary>
  2030. </IndexTerm>
  2031. <IndexTerm>
  2032. <Primary>menu bar</Primary>
  2033. </IndexTerm>
  2034. <IndexTerm>
  2035. <Primary>menu: accelerators</Primary>
  2036. </IndexTerm>
  2037. <IndexTerm>
  2038. <Primary>menu: mnemonics</Primary>
  2039. </IndexTerm>
  2040. <ItemizedList Mark="&bull;" Role="tight">
  2041. <ListItem Id="HIMGR.BSK.item.210">
  2042. <Para><XRef Linkend="WindowMenuTA"></Para>
  2043. </ListItem>
  2044. <ListItem Id="HIMGR.BSK.item.211">
  2045. <Para><XRef Linkend="WorkspaceMenuTA"></Para>
  2046. </ListItem>
  2047. <ListItem Id="HIMGR.BSK.item.212">
  2048. <Para><XRef Linkend="ChooseCommandMouseTA"></Para>
  2049. </ListItem>
  2050. <ListItem Id="HIMGR.BSK.item.213">
  2051. <Para><XRef Linkend="ChooseCommandKeyboardTA"></Para>
  2052. </ListItem>
  2053. </ItemizedList>
  2054. <Para>Menus provide access to commands you use to manage windows and operate
  2055. software applications.</Para>
  2056. <Para>Choosing a menu item performs an associated action on the currently
  2057. selected object. For example, when you select a window and choose Minimize
  2058. from its Window menu, the window becomes an icon.</Para>
  2059. <Para>Menu items that appear dimmed are available only under certain conditions.
  2060. For example, the Window menu's Restore item is available only
  2061. when the window is an icon.</Para>
  2062. <Para>Menus you'll use on the desktop include:</Para>
  2063. <Para><InlineGraphic Remap="graphic" Role="left" Entityref="WindowMenu"></InlineGraphic>&newline;&newline; The Window menu lists items you use to control
  2064. windows and window icons.&newline;&newline;This menu is displayed when you: click the Window menu button in
  2065. the upper left corner of a window, click on a window icon, press Alt+Spacebar
  2066. with the keyboard focus on a window or window icon.</Para>
  2067. <Para><InlineGraphic Remap="graphic" Role="left" Entityref="WorkspaceMenu"></InlineGraphic>&newline;&newline;The Workspace menu lists items for managing the
  2068. workspace.&newline;&newline;To display the Workspace menu, click mouse button 3 on the
  2069. workspace backdrop. Note that you cannot access this menu through your keyboard.</Para>
  2070. <Para><InlineGraphic Remap="graphic" Role="left" Entityref="AppFileMenu"></InlineGraphic>Menus that you "pull down" from an application's menu bar by
  2071. clicking the menu's name or typing Alt and its <Symbol Role="Variable">mnemonic</Symbol>. A mnemonic
  2072. is an underlined character in a menu or item name.&newline;&newline;An application's File menu is shown here.&newline;
  2073. &newline; The sequence of keys listed to the right of some items is called
  2074. an <GlossTerm>accelerator</GlossTerm>. Mnemonics and accelerators provide quick
  2075. keyboard access to menu items.</Para>
  2076. <Para><InlineGraphic Remap="graphic" Role="left" Entityref="WorkspaceObjMenu"></InlineGraphic>&newline;&newline; Menus that "pop up" when you click mouse button 3 (or press
  2077. Shift+F10) in an application window or on a workspace object.</Para>
  2078. <Sect2 Id="WindowMenuTA">
  2079. <Title>To Choose a Window Menu Item</Title>
  2080. <IndexTerm>
  2081. <Primary>Window menu</Primary>
  2082. </IndexTerm>
  2083. <IndexTerm>
  2084. <Primary>menu: window</Primary>
  2085. </IndexTerm>
  2086. <IndexTerm>
  2087. <Primary>choosing: from the Window menu</Primary>
  2088. </IndexTerm>
  2089. <IndexTerm>
  2090. <Primary>displaying the Window menu</Primary>
  2091. </IndexTerm>
  2092. <Procedure>
  2093. <Title>Mouse</Title>
  2094. <Step>
  2095. <OrderedList>
  2096. <ListItem Id="HIMGR.BSK.item.214">
  2097. <Para>Click the Window menu button to display the menu.</Para>
  2098. <Para><Graphic Entityref="WinMenButton" Id="HIMGR.BSK.grph.3"></Graphic>If the window is an icon, click the icon.</Para>
  2099. </ListItem>
  2100. <ListItem Id="HIMGR.BSK.item.215">
  2101. <Para>Click a menu item.
  2102. </Para>
  2103. </ListItem>
  2104. </OrderedList>
  2105. <Para><Emphasis>Or</Emphasis>, press mouse button 1 over the Window menu button or icon, drag
  2106. to the item, then release the mouse button.</Para>
  2107. <Para>To close the menu without choosing an item, click anywhere off the
  2108. menu.</Para>
  2109. </Step>
  2110. </Procedure>
  2111. <Procedure>
  2112. <Title>Keyboard</Title>
  2113. <Step>
  2114. <OrderedList>
  2115. <ListItem Id="HIMGR.BSK.item.216">
  2116. <Para>Press Alt+Tab until you've placed the keyboard focus, as shown by the
  2117. highlight, on the window or window icon.</Para>
  2118. </ListItem>
  2119. <ListItem Id="HIMGR.BSK.item.217">
  2120. <Para>Press Alt+Spacebar to display the Window menu.</Para>
  2121. </ListItem>
  2122. <ListItem Id="HIMGR.BSK.item.218">
  2123. <Para>Press the key for the item's mnemonic, the underlined character in
  2124. the item name.
  2125. </Para>
  2126. </ListItem>
  2127. </OrderedList>
  2128. <Para>To close the menu without choosing an item, press Esc.</Para>
  2129. </Step>
  2130. </Procedure>
  2131. <Procedure>
  2132. <Title>The Window Menu</Title>
  2133. <Step>
  2134. <Para><Anchor Id="WindowMenu"><IndexTerm>
  2135. <Primary>Window menu items</Primary>
  2136. </IndexTerm>
  2137. Use Window menu items to control a window.</Para>
  2138. <Para><InlineGraphic Remap="graphic" Role="left" Entityref="WindowMenu"></InlineGraphic><GlossTerm Role="nogloss">Restore</GlossTerm> Turns an icon back into a window
  2139. &newline;<GlossTerm Role="nogloss">Move</GlossTerm> Changes the window's location
  2140. &newline;<GlossTerm Role="nogloss">Size</GlossTerm> Changes the size of the window (inactive for
  2141. icons)
  2142. &newline;<GlossTerm Role="nogloss">Minimize</GlossTerm> Turns the window into an icon
  2143. &newline;<GlossTerm Role="nogloss">Maximize</GlossTerm> Enlarges the window to its greatest allowable
  2144. size
  2145. &newline;<GlossTerm Role="nogloss">Lower</GlossTerm> Moves the window to the background
  2146. &newline;<GlossTerm Role="nogloss">Occupy Workspace</GlossTerm> Use to select the workspaces in which
  2147. you want the window to appear
  2148. &newline;<GlossTerm Role="nogloss">Occupy All Workspaces</GlossTerm> Displays the window in all
  2149. workspaces
  2150. &newline;<GlossTerm Role="nogloss"> Unoccupy Workspace</GlossTerm> Removes the window from the current
  2151. workspace
  2152. &newline;<GlossTerm Role="nogloss">Close</GlossTerm> Closes the window, removing it from the workspace</Para>
  2153. </Step>
  2154. </Procedure>
  2155. <Procedure>
  2156. <Title>See Also</Title>
  2157. <Step>
  2158. <ItemizedList Mark="&bull;" Role="tight">
  2159. <ListItem Id="HIMGR.BSK.item.219">
  2160. <Para><XRef Linkend="ManagingWindowsSI"></Para>
  2161. </ListItem>
  2162. <ListItem Id="HIMGR.BSK.item.220">
  2163. <Para><XRef Linkend="UsingWorkspacesSI"></Para>
  2164. </ListItem>
  2165. </ItemizedList>
  2166. </Step>
  2167. </Procedure>
  2168. </Sect2>
  2169. <Sect2 Id="WorkspaceMenuTA">
  2170. <Title>To Choose a Workspace Menu Item</Title>
  2171. <IndexTerm>
  2172. <Primary>Workspace menu</Primary>
  2173. </IndexTerm>
  2174. <IndexTerm>
  2175. <Primary>displaying the Workspace menu</Primary>
  2176. </IndexTerm>
  2177. <IndexTerm>
  2178. <Primary>choosing: from the Workspace menu</Primary>
  2179. </IndexTerm>
  2180. <IndexTerm>
  2181. <Primary>menu: Workspace</Primary>
  2182. </IndexTerm>
  2183. <OrderedList>
  2184. <ListItem Id="HIMGR.BSK.item.221">
  2185. <Para>Move the pointer over the workspace backdrop.</Para>
  2186. </ListItem>
  2187. <ListItem Id="HIMGR.BSK.item.222">
  2188. <Para>Press mouse button 3, drag to the item, then release the
  2189. mouse button.
  2190. </Para>
  2191. </ListItem>
  2192. </OrderedList>
  2193. <Para>To close the menu without choosing an item, move the pointer away from the
  2194. menu and click.</Para>
  2195. <Para>You cannot choose a Workspace menu item through your keyboard.</Para>
  2196. <Procedure>
  2197. <Title>The Workspace Menu</Title>
  2198. <Step>
  2199. <Para><Anchor Id="WorkspaceMenu">
  2200. Use Workspace menu items to manage the workspace.</Para>
  2201. <Para><InlineGraphic Remap="graphic" Role="left" Entityref="WorkspaceMenu"></InlineGraphic><GlossTerm Role="nogloss">Shuffle Up</GlossTerm> Brings the bottom window (in a stack of
  2202. windows) forward
  2203. &newline;<GlossTerm Role="nogloss">Shuffle Down</GlossTerm> Puts the top window (in a stack of
  2204. windows) in the background
  2205. &newline;<GlossTerm Role="nogloss">Refresh</GlossTerm> Repaints the display
  2206. &newline;<GlossTerm Role="nogloss">Minimize/Restore Front Panel</GlossTerm> Turns the Front Panel into an
  2207. icon or restores the Front Panel from its icon
  2208. &newline;<GlossTerm Role="nogloss">Restart Workspace Manager</GlossTerm> Stops then restarts the
  2209. <GlossTerm>Workspace Manager</GlossTerm> (typically used after you have customized
  2210. configuration files)
  2211. &newline;<GlossTerm Role="nogloss">Log out</GlossTerm> Begins the logout process (equivalent to the
  2212. Front Panel Exit control)</Para>
  2213. </Step>
  2214. </Procedure>
  2215. <Procedure>
  2216. <Title>See Also</Title>
  2217. <Step>
  2218. <ItemizedList Mark="&bull;" Role="tight">
  2219. <ListItem Id="HIMGR.BSK.item.223">
  2220. <Para><XRef Linkend="UsingWorkspacesSI"></Para>
  2221. </ListItem>
  2222. </ItemizedList>
  2223. </Step>
  2224. </Procedure>
  2225. </Sect2>
  2226. <Sect2 Id="ChooseCommandMouseTA">
  2227. <Title>To Choose a Menu Item with the Mouse</Title>
  2228. <IndexTerm>
  2229. <Primary>menu: choosing items</Primary>
  2230. </IndexTerm>
  2231. <IndexTerm>
  2232. <Primary>mouse: choosing menu items</Primary>
  2233. </IndexTerm>
  2234. <IndexTerm>
  2235. <Primary>choosing: menu items</Primary>
  2236. </IndexTerm>
  2237. <IndexTerm>
  2238. <Primary>items: choosing</Primary>
  2239. </IndexTerm>
  2240. <IndexTerm>
  2241. <Primary>pop-up menu: choosing items</Primary>
  2242. </IndexTerm>
  2243. <OrderedList>
  2244. <ListItem Id="HIMGR.BSK.item.224">
  2245. <Para>Display the menu.
  2246. </Para>
  2247. <ItemizedList Mark="&bull;" Role="tight">
  2248. <ListItem Id="HIMGR.BSK.item.225">
  2249. <Para>Pull-down (menu bar) menu: Click the menu name
  2250. </Para>
  2251. </ListItem>
  2252. <ListItem Id="HIMGR.BSK.item.226">
  2253. <Para>Pop-up menu: Click mouse button 3 inside the application
  2254. </Para>
  2255. </ListItem>
  2256. <ListItem Id="HIMGR.BSK.item.227">
  2257. <Para>Object's pop-up menu: Click the object with mouse button 3
  2258. </Para>
  2259. </ListItem>
  2260. </ItemizedList>
  2261. </ListItem>
  2262. <ListItem Id="HIMGR.BSK.item.228">
  2263. <Para>Click the item.
  2264. </Para>
  2265. </ListItem>
  2266. </OrderedList>
  2267. <Para><Emphasis>Or</Emphasis>, press the mouse button, drag to the item, then release
  2268. the mouse button.</Para>
  2269. <Para>To close a menu without choosing an item, move the pointer away from the
  2270. menu and click.</Para>
  2271. <Procedure>
  2272. <Title>See Also</Title>
  2273. <Step>
  2274. <ItemizedList Mark="&bull;" Role="tight">
  2275. <ListItem Id="HIMGR.BSK.item.229">
  2276. <Para><XRef Linkend="ChooseCommandKeyboardTA"></Para>
  2277. </ListItem>
  2278. </ItemizedList>
  2279. </Step>
  2280. </Procedure>
  2281. </Sect2>
  2282. <Sect2 Id="ChooseCommandKeyboardTA">
  2283. <Title>To Choose a Menu Item with the Keyboard</Title>
  2284. <IndexTerm>
  2285. <Primary>choosing: menu items</Primary>
  2286. </IndexTerm>
  2287. <IndexTerm>
  2288. <Primary>choosing: menu items with keyboard</Primary>
  2289. </IndexTerm>
  2290. <IndexTerm>
  2291. <Primary>menu: choosing items</Primary>
  2292. </IndexTerm>
  2293. <IndexTerm>
  2294. <Primary>items: choosing</Primary>
  2295. </IndexTerm>
  2296. <IndexTerm>
  2297. <Primary>keyboard: choosing menu items</Primary>
  2298. </IndexTerm>
  2299. <IndexTerm>
  2300. <Primary>pop-up menu: choosing with keyboard</Primary>
  2301. </IndexTerm>
  2302. <Procedure>
  2303. <Title>Pull-down Menus</Title>
  2304. <Step>
  2305. <OrderedList>
  2306. <ListItem Id="HIMGR.BSK.item.230">
  2307. <Para>Press Alt+Tab until you've placed the keyboard focus, as shown by the
  2308. highlight, on the application window.</Para>
  2309. </ListItem>
  2310. <ListItem Id="HIMGR.BSK.item.231">
  2311. <Para>Display the menu by holding down Alt and then pressing the key for the
  2312. menu's mnemonic (the underlined character in the menu's name as shown in the
  2313. menu bar).</Para>
  2314. </ListItem>
  2315. <ListItem Id="HIMGR.BSK.item.232">
  2316. <Para>Press the key for the item's mnemonic.</Para>
  2317. <Para><Emphasis>Or</Emphasis>, press an arrow key to move to the item, then press Return.
  2318. </Para>
  2319. </ListItem>
  2320. </OrderedList>
  2321. </Step>
  2322. </Procedure>
  2323. <Procedure>
  2324. <Title>Pop-up Menus</Title>
  2325. <Step>
  2326. <OrderedList>
  2327. <ListItem Id="HIMGR.BSK.item.233">
  2328. <Para>Press Alt+Tab until the keyboard focus is on the application window or
  2329. workspace object.</Para>
  2330. </ListItem>
  2331. <ListItem Id="HIMGR.BSK.item.234">
  2332. <Para>Press Shift+F10 to display the pop-up menu.</Para>
  2333. </ListItem>
  2334. <ListItem Id="HIMGR.BSK.item.235">
  2335. <Para>Press the key for the item's mnemonic.</Para>
  2336. <Para><Emphasis>Or</Emphasis>, Press Down Arrow to move to the item, then press Return.
  2337. </Para>
  2338. </ListItem>
  2339. </OrderedList>
  2340. <Para>To close a menu without choosing an item, press Esc.</Para>
  2341. </Step>
  2342. </Procedure>
  2343. <Procedure>
  2344. <Title>See Also</Title>
  2345. <Step>
  2346. <ItemizedList Mark="&bull;" Role="tight">
  2347. <ListItem Id="HIMGR.BSK.item.236">
  2348. <Para><XRef Linkend="KeyboardFocusKeysTA"></Para>
  2349. </ListItem>
  2350. <ListItem Id="HIMGR.BSK.item.237">
  2351. <Para><XRef Linkend="DesktopKeyboardNav"></Para>
  2352. </ListItem>
  2353. </ItemizedList>
  2354. </Step>
  2355. </Procedure>
  2356. </Sect2>
  2357. </Sect1>
  2358. <Sect1 Id="LogOutLockScreenTA">
  2359. <Title>Leaving the Desktop</Title>
  2360. <ItemizedList Mark="&bull;">
  2361. <ListItem Id="HIMGR.BSK.item.238">
  2362. <Para><XRef Linkend="LoggingOutTA"> describes how to exit the desktop.</Para>
  2363. </ListItem>
  2364. <ListItem Id="HIMGR.BSK.item.239">
  2365. <Para><XRef Linkend="LockingDisplayTA"> describes how to prevent unauthorized use
  2366. of your system when you are away from it and have not logged out.
  2367. </Para>
  2368. </ListItem>
  2369. </ItemizedList>
  2370. <Para>For information about logging in, see <OLink Type="JumpNewView" LocalInfo="Loginmgr SDL-RESERVED-hometopic">Login Manager Help</OLink>.</Para>
  2371. <Sect2 Id="LoggingOutTA">
  2372. <Title>To Log Out</Title>
  2373. <IndexTerm>
  2374. <Primary>logging out</Primary>
  2375. </IndexTerm>
  2376. <IndexTerm>
  2377. <Primary>Front Panel: Exit control</Primary>
  2378. </IndexTerm>
  2379. <IndexTerm>
  2380. <Primary>Exit control</Primary>
  2381. </IndexTerm>
  2382. <IndexTerm>
  2383. <Primary>current session</Primary>
  2384. </IndexTerm>
  2385. <Caution>
  2386. <Para>Before logging out of the desktop, save your work.
  2387. </Para>
  2388. </Caution>
  2389. <ItemizedList Mark="&bull;">
  2390. <ListItem Id="HIMGR.BSK.item.240">
  2391. <Para>Click the Exit control in the Front Panel.
  2392. </Para>
  2393. <Para><InlineGraphic Remap="graphic" Role="left" Entityref="fpExit"></InlineGraphic>&newline;&empty;&newline;</Para>
  2394. </ListItem>
  2395. <ListItem Id="HIMGR.BSK.item.241">
  2396. <Para><Emphasis>Or,</Emphasis> Choose Log out from the Workspace menu:</Para>
  2397. <OrderedList>
  2398. <ListItem Id="HIMGR.BSK.item.242">
  2399. <Para>Move the pointer over the workspace backdrop.
  2400. </Para>
  2401. </ListItem>
  2402. <ListItem Id="HIMGR.BSK.item.243">
  2403. <Para>Press mouse button 3 to display the Workspace menu.
  2404. </Para>
  2405. </ListItem>
  2406. <ListItem Id="HIMGR.BSK.item.244">
  2407. <Para>Drag to choose Log out, then release the mouse button.
  2408. </Para>
  2409. </ListItem>
  2410. </OrderedList>
  2411. </ListItem>
  2412. </ItemizedList>
  2413. <Para>You cannot display the Workspace menu using your keyboard.</Para>
  2414. <Para>As you log out of the desktop, your <GlossTerm Role="baseform=current session">current
  2415. session</GlossTerm> is saved. When you log back in, the desktop will
  2416. appear as it did before you logged out.</Para>
  2417. <Para>Applications that do not get saved as part of the current session include:</Para>
  2418. <ItemizedList Mark="&bull;" Role="tight">
  2419. <ListItem Id="HIMGR.BSK.item.245">
  2420. <Para>Applications that you run in terminal emulator windows</Para>
  2421. </ListItem>
  2422. <ListItem Id="HIMGR.BSK.item.246">
  2423. <Para>Non-desktop applications that do not preserve their state during logout
  2424. </Para>
  2425. </ListItem>
  2426. </ItemizedList>
  2427. <Para>You'll need to restart these applications when you log in.</Para>
  2428. <Procedure>
  2429. <Title>See Also</Title>
  2430. <Step>
  2431. <ItemizedList Mark="&bull;" Role="tight">
  2432. <ListItem Id="HIMGR.BSK.item.247">
  2433. <Para><XRef Linkend="WorkspaceMenuTA"></Para>
  2434. </ListItem>
  2435. </ItemizedList>
  2436. </Step>
  2437. </Procedure>
  2438. </Sect2>
  2439. <Sect2 Id="LockingDisplayTA">
  2440. <Title>To Lock Your Display</Title>
  2441. <Para>&newline;&empty;&newline;<IndexTerm>
  2442. <Primary>locking your display</Primary>
  2443. </IndexTerm><IndexTerm>
  2444. <Primary>display: locking</Primary>
  2445. </IndexTerm><IndexTerm>
  2446. <Primary>Front Panel: Lock control</Primary>
  2447. </IndexTerm>
  2448. </Para>
  2449. <ItemizedList Mark="&bull;">
  2450. <ListItem Id="HIMGR.BSK.item.248">
  2451. <Para>Click the Lock control in the Front Panel.
  2452. </Para>
  2453. <Para><InlineGraphic Remap="graphic" Role="left" Entityref="Lock"></InlineGraphic>&newline;&empty;&newline;</Para>
  2454. </ListItem>
  2455. </ItemizedList>
  2456. <Para>To unlock your display, type your password.</Para>
  2457. <Para>&newline;&empty;&newline;</Para>
  2458. <Para><OLink Type="JumpNewView" LocalInfo="Stylemgr SMScreenDialogDE"><InlineGraphic Remap="graphic" Entityref="ScrnIcon" Id="HIMGR.BSK.grph.4"></InlineGraphic></OLink>Click this screen icon for information about Style Manager &newline;settings that control the appearance of a locked display.</Para>
  2459. </Sect2>
  2460. </Sect1>
  2461. </Chapter>
  2462. <!--fickle 1.15 help-to-docbook 1.4 01/17/96 16:37:38-->