1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032
|
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title>
Dokumentim i Tux Paint-it (“README”) </title>
<meta http-equiv="Content-Type"
content="text/html; charset=utf-8">
<style>
body { font-size: large; }
table { font-size: large; }
div.screenshot-center {
text-align: center;
}
div.screenshot-right {
float: right;
margin-left: 1em;
margin-bottom: 1em;
}
div.screenshot-right-after {
clear: both;
}
div.keeptogether { page-break-inside: avoid; }
section h1 { font-size: 2em; }
h1, h2, h3, h4, h5 { font-family: sans; }
h1 { color: #800; page-break-before: always; break-before: always; }
h2 { color: #440; page-break-after: avoid; break-after: avoid; }
h3 { color: #080; page-break-after: avoid; break-after: avoid; }
h4 { color: #008; page-break-after: avoid; break-after: avoid; }
h5 { color: #808; page-break-after: avoid; break-after: avoid; }
h1 + p { page-break-inside: avoid; }
h2 + p { page-break-inside: avoid; }
h3 + p { page-break-inside: avoid; }
h4 + p { page-break-inside: avoid; }
h5 + p { page-break-inside: avoid; }
dt {
font-size: large;
color: #404;
font-family: sans;
margin-top: 1em;
margin-bottom: 0.25em;
}
dd, blockquote {
border-left: 1px solid #888;
padding-left: 1em;
border-radius: 0 0 0 1em;
}
p.note {
border: 1px solid #000;
background-color: #eee;
border-radius: 0.5em;
padding: 0.5em;
display: inline-block;
margin-right: 3em;
margin-top: 0.5em;
margin-bottom: 0.5em;
}
section.outer {
padding-bottom: 1em;
border-bottom: 2px solid #000;
}
section.indent p,dl {
margin-left: 2em;
}
section.indent dl p {
margin-left: 0;
}
p + ul, p + ol {
margin-left: 2em;
}
@media print {
p {
orphans: 3;
widows: 3;
}
}
</style>
</head>
<body bgcolor="#FFFFFF"
text="#000000"
link="#0000FF"
vlink="#FF0000"
alink="#FF00FF">
<!-- Title -->
<section class="outer">
<header>
<center>
<h1 style="page-break-before: avoid;">
<img src="../../html/images/tuxpaint-title.png"
width="205"
height="210"
alt="Tux Paint"><br>
version 0.9.34 </h1>
<h3 align="center">
Një program i thjeshtë vizatimi për fëmijë </h3>
<p>
Të drejta kopjimi © 2002-2024 nga kontribues të ndryshëm; shihni <a href="../../AUTHORS.txt">AUTHORS.txt</a>.<br/>
<a href="https://tuxpaint.org/">https://tuxpaint.org/</a>
</p>
<p>
25 tetor 2024 </p>
</center>
</header>
<table border="2"
cellspacing="0"
cellpadding="2"
summary="Pasqyrë e Lëndës"
align="center"
style="page-break-inside: avoid;">
<tr>
<th>
Pasqyrë e Lëndës </th>
</tr>
<tr>
<td>
<ol type="I">
<li><a href="#about">Mbi Tux Paint-in</a></li> <li><a href="#using">Përdorim i Tux Paint-it</a> <ol type="A">
<li><a href="#using_loading">Nisja e Tux Paint-it</a></li> <li><a href="#using_title">Title Screen</a></li> <li><a href="#using_main">Skena Kryesore</a></li> <li><a href="#using_tools">Mjete të Mundshme</a> <ol type="1">
<li><a href="#using_tools_drawing">Mjete Vizatimi</a> <ol type="a">
<li><a href="#using_tools_drawing_paint">Mjeti “Ngjyrosni” (Penel)</a></li> <li><a href="#using_tools_drawing_stamp">Mjeti “Stampë” (Vula Gome)</a></li> <li><a href="#using_tools_drawing_lines">Mjeti “Vija”</a></li> <li><a href="#using_tools_drawing_shapes">Mjeti “Forma”</a></li> <li><a href="#using_tools_drawing_text_and_label">Mjete “Tekst” dhe “Etiketa”</a></li> <li><a href="#using_tools_drawing_fill">Mjeti “Mbushje”</a></li> <li><a href="#using_tools_drawing_magic">Mjeti “Magjik” (Efekte Speciale)</a></li> <li><a href="#using_tools_drawing_eraser">Mjeti “Gomë”</a></li> </ol>
</li><!-- Using: Tools: Drawing -->
<li><a href="#using_tools_other">Kontrolle të Tjera</a> <ol type="a">
<li><a href="#using_tools_other_undo_and_redo">Urdhrat “Ribëje” dhe “Zhbëje”</a></li> <li><a href="#using_tools_other_new">Urdhri “I ri”</a></li> <li><a href="#using_tools_other_open">Urdhri “Hape”</a></li> <li><a href="#using_tools_other_save">Urdhri “Ruaje”</a></li> <li><a href="#using_tools_other_print">Urdhri “Shtype”</a></li> <li><a href="#using_tools_other_open_slides">Urdhri “Diapozitiva” (nën “Hape”)</a></li> <li><a href="#using_tools_other_quit">Urdhëri “Dil”</a></li> <li><a href="#using_tools_other_sound_muting">Heqje Tingujsh</a></li> </ol>
</li><!-- Using: Tools: Other -->
</ol>
</li>
<li><a href="#using_controlling">Kontrollim i Tux Paint-it</a></li> </ol>
</li><!-- Using -->
<li><a href="#loading_into">Ngarkim Figurash të Tjera në Tux Paint</a></li> <li><a href="#further">Lexim i Mëtejshëm</a></li> <li><a href="#help">Si të Merret Ndihmë</a></li> <li><a href="#participate">Si të Merret Pjesë</a></li> </ol>
</td>
</tr>
</table>
</section>
<!-- Title -->
<section class="outer">
<header>
<h1 id="about">
I. Mbi Tux Paint-in </h1>
</header>
<section class="indent">
<header>
<h2>
A. Ç’është “Tux Paint”? </h2>
<header>
<p>
Tux Paint is a free drawing program designed for young children (kids ages 3 and up). It has a simple, easy-to-use interface, fun sound effects, and an encouraging cartoon mascot who helps guide children as they use the program. It provides a blank canvas and a variety of drawing tools to help your child be creative. </p>
</section>
<section class="indent">
<header>
<h2>
B. Objektiva </h2>
</header>
<dl>
<div class="keeptogether">
<dt>
<strong>I lehtë dhe Zbavitës</strong>
</dt>
<dd>
Tux Paint is meant to be a simple drawing program for young children. It is not meant as a general-purpose drawing tool. It <em>is</em> meant to be fun and easy to use. Sound effects and a cartoon character help let the user know what's going on, and keeps them entertained. There are also extra-large cartoon-style mouse pointer shapes. </dd>
</div>
<div class="keeptogether">
<dt>
<strong>I zgjerueshëm</strong>
</dt>
<dd>
Tux Paint is extensible. Brushes and 'rubber stamp' shapes can be dropped in and pulled out. For example, a teacher can drop in a collection of animal shapes and ask their students to draw an ecosystem. Each shape can have a sound which is played, and textual facts which are displayed, when the child selects the shape. </dd>
</div>
<div class="keeptogether">
<dt>
<strong>Bartje Në Platforma të Tjera</strong>
</dt>
<dd>
Tux Paint is portable among various computer platforms: Windows, Macintosh, Linux, etc. The interface looks the same among them all. Tux Paint runs suitably well on older systems, and can be built to run better on slow systems. </dd>
</div>
<div class="keeptogether">
<dt>
<strong>Thjeshtësi</strong>
</dt>
<dd>
There is no direct access to the computer's underlying intricacies. The current image is kept when the program quits, and reappears when it is restarted. Saving images requires no need to create filenames or use the keyboard. Opening an image is done by selecting it from a collection of thumbnails. Access to other files on the computer is restricted. </dd>
</div>
<div class="keeptogether">
<dt>
<strong>Përdorim Nga Persona Me Aftësi të Kufizuara</strong>
</dt>
<dd>
Tux Paint offers a number of accessibility options, including increasing the size of control buttons, changing the UI font, options to control the cursor (mouse pointer) using the keyboard or other input devices (joystick, gamepad, etc.), an on-screen keyboard, and "stick" mouse clicks. </dd>
</div>
</dl>
</section>
<section class="indent">
<header>
<h2>
C. Licencë </h2>
</header>
<p>
Tux Paint is an Open Source project, Free Software released under the GNU General Public License (GPL). It is free, and the 'source code' behind the program is available. (This allows others to add features, fix bugs, and use parts of the program in their own GPL'd software.) </p>
<p>
See <a href="../../COPYING.txt">COPYING.txt</a> for the full text of the GPL license. </p>
</section>
<section class="indent">
<header>
<h2>
D. What's New in Tux Paint version 0.9.34? </h2>
</header>
<dl>
<dt>"Eraser" Fill mode</dt>
<dd>A flood fill option that fills the canvas with the background color, or template or starter background, upon which the drawing was based.</dd>
<dt>New brushes</dt>
<dd>New brushes for the Paint and Lines tools: "Fluff (gradient)", "Graphite", "Impasto", "Paint splats", "Smoke", "Spines", "Water (still)", and "Watercolor splotches".</dd>
<dt>New brush option</dt>
<dd>Brushes may be given a "chaotic" setting, causing them to rotate continuously while drawing with them.</dd>
<dt>New templates</dt>
<dd>"Clouds from an airplane" and "Lough Leane".</dd>
<dt>New Magic tool: Comic dots</dt>
<dd>Draws a repeating dot pattern, simulating the "Ben Day process" used in early comic books.</dd>
<dt>New Magic tool: Rotate</dt>
<dd>Rotates the drawing.</dd>
<dt>New Magic tool: Fractal</dt>
<dd>A set of tools that recursively repeat what you draw, scaling and/or rotating it as they repeat.</dd>
<dt>New Magic tool: ASCII Typewriter</dt>
<dd>Transform your picture into "ASCII art", typewriter-style.</dd>
<dt>New Magic tool: ASCII Computer</dt>
<dd>Transform your picture into "ASCII art", computer-style.</dd>
<dt>New Magic tool: ASCII Color Computer</dt>
<dd>Transform your picture into colored computer "ASCII art".</dd>
<dt>New Magic tool: Crescent</dt>
<dd>Draw one of various crescent shapes at a chosen angle.</dd>
<dt>New Magic tool: Spiral</dt>
<dd>Draw spirals.</dd>
<dt>New Magic tool: Spiral Square</dt>
<dd>Draw square spirals.</dd>
<dt>New Magic tool: Concentric Circle</dt>
<dd>Draw concentric circles.</dd>
<dt>New Magic tool: Concentric Square</dt>
<dd>Draw concentric squares.</dd>
<dt>New Magic tool: Tessellation Pointy</dt>
<dd>Draw repeating tessellation patterns with pointy-topped hexagons.</dd>
<dt>New Magic tool: Tessellation Flat</dt>
<dd>Draw repeating tessellation patterns with flat-topped hexagons.</dd>
<dt>Magic API Updates</dt>
<dd>Sound pause and resume functions added.</dd>
</dl>
<p>
Për listën e plotë të ndryshimeve, shihni <a href="../../CHANGES.txt">CHANGES.txt</a>. </p>
</section>
</section>
<!-- Using -->
<section class="outer">
<header>
<h1 id="using">
II. Përdorim i Tux Paint-it </h1>
</header>
<section class="outer">
<header>
<h2 id="using_loading">
A. Nisja e Tux Paint-it </h2>
</header>
<section class="indent">
<header>
<h3>
1. Përdorues të Linux-it/Unix-it </h3>
<header>
<p>
Tux Paint should have placed a launcher icon in your KDE and/or GNOME menus, under 'Graphics.' </p>
<div class="keeptogether">
<p>
Alternatively, you can run the following command at a shell prompt (e.g., "<code>$</code>"): </p>
<blockquote>
<code>$ tuxpaint</code>
</blockquote>
</div>
<p>
If any errors occur, they will be displayed on the terminal (to <code>STDERR</code>). </p>
</section>
<section class="indent">
<header>
<h3>
2. Përdorues Windows-i </h3>
</header>
<table border="0"
cellspacing="0"
cellpadding="4"
bgcolor="#AAAAFF"
align="right"
summary="">
<tr>
<td align="center">
<img src="../../html/images/icon-win32.png"
width="32"
height="32"
alt="[Ikonë Tux Paint-i]"><br>
Tux Paint
</td>
</tr>
</table>
<p>
If you installed Tux Paint on your computer using the 'Tux Paint Installer,' it will have asked you whether you wanted a 'Start' menu short-cut, and/or a desktop shortcut. If you agreed, you can simply run Tux Paint from the 'Tux Paint' section of your 'Start' menu (e.g., under 'All Programs'), or by double-clicking the 'Tux Paint' icon on your desktop, if you had the installer place one there. </p>
<p>
If you're using the 'portable' (ZIP-file) version of Tux Paint, or if you used the 'Tux Paint Installer,' but chose not to have shortcuts installed, you'll need to double-click the "<code>tuxpaint.exe</code>" icon in the "<code>Tux Paint</code>" folder on your computer. </p>
<p>
By default, the 'Tux Paint Installer' will put Tux Paint's folder in <nobr>"<code style='background: #EEE;'>C:\Program Files\TuxPaint\</code>"</nobr>, though you may have changed this when you ran the installer. </p>
<p>
If you used the 'ZIP-file' download, Tux Paint's folder will be wherever you extracted the contents of the ZIP file. </p>
</section>
<section class="indent">
<header>
<h3>
3. Përdorues të MacOS-it </h3>
</header>
<p>
Thjesht dyklikoni mbi ikonën “<code>Tux Paint</code>”. </p>
</section>
</section>
<section class="outer indent">
<div class="keeptogether">
<header>
<div class="screenshot-right">
<img src="../../html/images/tuxpaint-title.jpg"
width="324"
height="254"
alt="[Title screen]">
<span style="display: none;"><br/> </span>
</div>
<h2 id="using_title">
B. Title Screen </h2>
</header>
<p>
When Tux Paint first loads, a title/credits screen will appear. </p>
</div>
<p>
Once loading is complete, press a key or click or tap in the Tux Paint window to continue. (Or, after about 5 seconds, the title screen will go away automatically.) </p>
<div class="screenshot-right-after"></div>
</section>
<section class="outer indent">
<div class="keeptogether">
<header>
<h2 id="using_main">
C. Skena Kryesore </h2>
</header>
<p>
The main screen is divided into the following sections: </p>
</div>
<dl>
<div class="keeptogether">
<!-- FIXME: Update screenshot to add "Fill" tool -->
<div class="screenshot-right">
<img src="../../html/images/tools.jpg"
width="324"
height="254"
alt=
"[Tools: Paint, Stamp, Lines, Shapes, Text, Magic, Label, Undo, Redo, Eraser, New, Open, Save, Print, Quit]">
<span style="display: none;"><br/> </span>
</div>
<dt>
<strong>Në Anën e Majtë: Panle</strong>
</dt>
<dd>
<p>
The toolbar contains the drawing and editing controls. </p>
</dd>
</div>
<div class="screenshot-right-after"></div>
<div class="keeptogether">
<div class="screenshot-right">
<img src="../../html/images/canvas.jpg"
width="324"
height="254"
alt="[Kanavacë]">
<span style="display: none;"><br/> </span>
</div>
<dt>
<strong>Në Mes: Kanavacë Vizatimi</strong>
</dt>
<dd>
<p>
The largest part of the screen, in the center, is the drawing canvas. This is, obviously, where you draw! </p>
<p class="note">
<span title="Information">💡</span> <strong>Note:</strong> The size of the drawing canvas depends on the size of Tux Paint. You can change the size of Tux Paint using the <em>Tux Paint Config.</em> configuration tool, or by other means. See the <a href="OPTIONS.html"><em>Options</em></a> documentation for more details. </p>
</dd>
</div>
<div class="screenshot-right-after"></div>
<div class="keeptogether">
<div class="screenshot-right">
<img src="../../html/images/selector.jpg"
width="324"
height="254"
alt=
"[Selectors - Brushes, Letters, Shapes, Stamps]">
<span style="display: none;"><br/> </span>
</div>
<dt>
<strong>Në Anën e Djathtë: Përzgjedhës</strong>
</dt>
<dd>
<p>
Depending on the current tool, the selector shows different things. e.g., when the Paint Brush or Line tool is selected, it shows the various brushes available. When the Rubber Stamp tool is selected, it shows the different shapes you can use. When the Text or Label tool is selected, it shows various fonts. </p>
</dd>
</div>
<div class="screenshot-right-after"></div>
<div class="keeptogether">
<div class="screenshot-right">
<img src="../../html/images/colors.jpg"
width="324"
height="254"
alt=
"[Colors - Black, White, Red, Pink, Orange, Yellow, Green, Cyan, Blue, Purple, Brown, Grey]">
<span style="display: none;"><br/> </span>
</div>
<dt>
<strong>Më Poshtë: Ngjyra</strong>
</dt>
<dd>
<p>
When the active tool supports colors, a palette of colors choices will be shown near the bottom of the screen. Click one to choose a color, and it will be used by the active tool. (For example, the "Paint" tool will use it as the color to draw with the chosen brush, and the "Fill" tool will use it as the color to use when flood-filling an area of the picture.) </p>
<div class="screenshot-right-after">
<img src="../../html/images/colors_special.png"
width="105"
height="48"
alt=""
align="right">
</div>
<p id="special_color_options">
On the far right are three special color options: <ul>
<li>
<strong>Zgjedhës Ngjyrash</strong><br/>
The "color picker" (which has an outline of an eye-dropper) allows you to pick a color found within your drawing.<br/>
(A shortcut key is available to access this feature quickly; see below.) </li>
<li>
<strong>Paletë Ylberi</strong><br/>
The rainbow palette allows you to pick any color by choosing the hue, saturation, and value of the color you want. A box on the left displays hundreds of hues — from red at the top through to violet at the bottom — at hundreds of saturation/intensity levels — from pale & washed-out on the left through to pure on the right. A grey vertical bar provides access to hundreds of value levels — from lighest at the top through to darkest at the bottom.<br/>
Click the green checkbox button to select the color, or the "Back" button to dismiss the pop-up without picking a new color. <div class="screenshot-center">
<img src="../../html/images/colors_rainbow_palette.png"
width="542"
height="291"
alt="" />
</div>
You may also set this tool's color to that of other color choices: <ul>
<li>Whichever built-in color is selected, if any</li>
<li>Ngjyra e tanishme e Zgjedhësit të Ngjyrave</li>
<li>Ngjyra e tanishme e Përzierësit të Ngjyrave</li>
</ul>
</li>
<li>
<strong>Përzierës Ngjyrash</strong><br/>
The "color mixer" (which has silhouette of a paint palette) allows you to create colors by blending primary additive colors — red, yellow, and blue — along with white (to "tint"), grey (to "tone"), and black (to "shade").<br/>
You may click any button multiple times (for example, <span class="white-space: nowrap;">red + red + yellow</span> results in a red-orange color). The ratios of colors added are shown at the bottom.<br/>
You can start over (reset to no colors in your picture) by clicking the "Clear" button. You can also undo or redo multiple steps of mixing, in case you made a mistake (without having to start over).<br/>
Click the green checkbox button to select the color, or the "Back" button to dismiss the pop-up without picking a new color. <div class="screenshot-center">
<img src="../../html/images/colors_mixer.png"
width="420"
height="320"
alt="" />
</div>
</li>
</ul>
</p>
<p class="note">
<span title="Keyboard shortcut">⌨</span> When the active tool supports colors, a shortcut may be used for quick access to the "color picker" option. Hold the <b><code>[Tasti Kontroll]</code></b> key while clicking, and the color under the mouse cursor will be shown at the bottom. You may drag around to canvas to find the color you want. When you release the mouse button, the color under the cursor will be selected. If you release the mouse outside of the canvas (e.g., over the "Tools" area), the color selection will be left unchanged. (This is similar to clicking the "Back" button that's available when bringing up the "color picker" option via its button the color palette.) </p>
<p class="note">
<span title="Configuration option">⚙</span> <strong>Note:</strong> You can define your own colors for Tux Paint. See the "<a href="OPTIONS.html"><em>Options</em></a>" documentation. </p>
</dd>
</div>
<div class="keeptogether">
<div class="screenshot-right">
<img src="../../html/images/tips.jpg"
width="324"
height="254"
alt=
"(Shembull ndihmëze: “Zgjidhni një formë. Klikoni që të zgjidhni qendrën, tërhiqeni, mandej lëreni, kur të ketë madhësinë që doni. Lëvizni përreth që ta rrotulloni dhe klikoni që të vizatohet.”)">
<span style="display: none;"><br/> </span>
</div>
<dt>
<strong>Në Fund: Zonë Ndihme</strong>
</dt>
<dd>
<p>
At the very bottom of the screen, <em>Tux</em>, the Linux Penguin, provides tips and other information while you use Tux Paint. </p>
</dd>
</div>
<div class="screenshot-right-after"></div>
</dl>
</section>
<!-- Using: Tools -->
<section>
<header>
<h2 id="using_tools">
D. Mjete të Mundshme </h2>
</header>
<!-- Using: Tools: Drawing -->
<section>
<header>
<h3 id="using_tools_drawing">
1. Mjete Vizatimi </h3>
</header>
<dl>
<dt id="using_tools_drawing_paint">
<strong>a. Mjeti “Ngjyrosni” (Penel)</strong>
</dt>
<dd>
<img src="../../html/images/tool_paint.png"
width="48"
height="48"
alt=""
align="right">
<p>
The Paint Brush tool lets you draw freehand, using various brushes (chosen in the Selector on the right) and colors (chosen in the Color palette towards the bottom). </p>
<p>
If you hold the mouse button down, and move the mouse, it will draw as you move. </p>
<p>
Some brushes are animated — they change their shape as you draw them. A good example of this is the vines brush that ships with Tux Paint. These brushes will have a small "filmstrip" icon drawn on their Selector buttons. </p>
<p>
Other brushes are directional — they will draw a different shape depending on what direction you are painting with them. An example of this is the arrow brush that ships with Tux Paint. These brushes have a small 8-way arrow icon drawn on their Selector buttons. </p>
<p>
Finally, some brushes can be both direction <em>and</em> animated. Examples of this are the cat and squirrel brushes that ship with Tux Paint. These brushes will have both the "filmstrip" and 8-way arrow icons. </p>
<p>
As you draw, a sound is played. The bigger the brush, the lower the pitch. </p>
<div class="screenshot-center">
<img src="../../html/images/ex_paint.png"
width="120"
height="95"
alt="">
</div>
<strong id="brush_spacing">Distancë Peneli</strong>
<blockquote>
<p>
The space between each position where a brush is applied to the canvas can vary. Some brushes (such as the footprints and flower) are spaced, by default, far enough apart that they don't overlap. Other brushes (such as the basic circular ones) are spaced closely, so they make a continuous stroke. </p>
<p>
The default spacing of brushes may be overridden using by clicking within the triangular-shaped series of bars at the bottom right; the larger the bar, the wider the spacing. Brush spacing affects both tools that use the brushes: the "Paint" tool and the "Lines" tool. </p>
<div class="screenshot-center">
<img src=
"../../html/images/tool_slider.png"
width="96"
height="48"
alt="">
</div>
<p class="note">
<span title="Configuration option">⚙</span> <strong>Note</strong>: If the "<code>nobrushspacing</code>" option is set, Tux Paint won't display the brush spacing controls. See the "<a href="OPTIONS.html"><em>Options</em></a>" documentation. </p>
</blockquote>
</dd>
<dt id="using_tools_drawing_stamp">
<strong>b.Mjeti “Stampë” (Vula Gome)</strong>
</dt>
<dd>
<img src="../../html/images/tool_stamp.png"
width="48"
height="48"
alt=""
align="right">
<p>
The Stamp tool is like a set of rubber stamps or stickers. It lets you paste pre-drawn or photographic images (like a picture of a horse, or a tree, or the moon) in your picture. </p>
<p>
As you move the mouse around the canvas, an outline follows the mouse, showing where the stamp will be placed, and how big it will be. Click on the canvas where you wish to place the stamp. </p>
<div class="screenshot-center">
<img src="../../html/images/ex_stamps.png"
width="182"
height="156"
alt="">
</div>
<dl>
<dt>
<strong>Kategori Stampash</strong>
</dt>
<dd>
<img src="../../html/images/tool_stamp_categories.png"
width="96"
height="48"
alt=""
align="right">
There can be numerous categories of stamps (e.g., animals, plants, outer space, vehicles, people, etc.). Use the Left and Right arrows near the bottom of the Selector to cycle through the collections. </dd>
<dt>
<strong>Rrotullim Stampash</strong>
</dt>
<dd>
<img src="../../html/images/tool_stamp_rotation.png"
width="48"
height="48"
alt=""
align="right">
<p>
Using the rotation toggle button near the bottom right, you can enable a rotation step when placing stamps. Once you've placed the stamp, choose the angle to rotate it by moving the mouse around the canvas. Click the mouse button again and the stamp will be added to the drawing. </p>
<p class="note">
<span title="Configuration option">⚙</span> <strong>Note:</strong> If "stamp rotation" option is disabled, the stamp will be drawn on the canvas when you let go of the mouse button. (There's no rotation step.) See the "<a href="OPTIONS.html"><em>Options</em></a>" documentation to learn about the "rrotullim stampash" ("<code>stamprotation</code>") option. </p>
<p class="note">
<span title="Version variation">📜</span> <strong>Note:</strong> The stamp rotation feature was added to Tux Paint in version 0.9.29. </p>
</dd>
<dt>
<strong>Kontrolle Stampe</strong>
</dt>
<dd>
<img src="../../html/images/tool_stamp_controls.png"
width="96"
height="96"
alt=""
align="right">
<p>
Prior to 'stamping' an image onto your drawing, various effects can sometimes be applied (depending on the stamp): </p>
<ul>
<li>
Some stamps can be colored or tinted. If the color palette below the canvas is activated, you can click the colors to change the tint or color of the stamp before placing it in the picture. </li>
<li>
Stamps can be shrunk and expanded, by clicking within the triangular-shaped series of bars at the bottom right; the larger the bar, the larger the stamp will appear in your picture. </li>
<li>
Many stamps may be flipped vertically, or displayed as a mirror-image, using the control buttons at the bottom right. </li>
</ul>
<p class="note">
<span title="Configuration option">⚙</span> <strong>Note</strong>: If the "<code>nostampcontrols</code>" option is set, Tux Paint won't display the Rotation, Mirror, Flip, or sizing controls for stamps. See the "<a href="OPTIONS.html"><em>Options</em></a>" documentation. </p>
</dd>
<dt>
<strong>Tinguj Stampe</strong>
</dt>
<dd>
<img src="../../html/images/tool_sfx.png"
width="48"
height="24"
alt=""
align="right">
<p>
Different stamps can have different sound effects and/or descriptive (spoken) sounds. Buttons in the Help Area at the lower left (near <em>Tux</em>, the Linux penguin) allow you to re-play the sound effects and descriptive sounds for the currently-selected stamp. </p>
</dd>
</dl>
</dd>
<dt id="using_tools_drawing_lines">
<strong>c.Mjeti “Vija”</strong>
</dt>
<dd>
<img src="../../html/images/tool_lines.png"
width="48"
height="48"
alt=""
align="right">
<p>
This tool lets you draw straight lines using the various brushes and colors you normally use with the Paint Brush. </p>
<p>
Click the mouse and hold it to choose the starting point of the line. As you move the mouse around, a thin 'rubber-band' line will show where the line will be drawn. At the bottom, you'll see the angle of your line, in degrees. A line going straight to the right is 0°, a line going straight up is 90°, a line going straight left is 180°, a line going straight down is 270°, and so on. </p>
<p>
Let go of the mouse to complete the line. A "sproing!" sound will play. </p>
<p>
Some brushes are animated, and will show a pattern of shapes along the line. Others are directional, and will show a different shape depending on the angle of the brush. And finally some are both animated and directional. See "Paint", above, to learn more. </p>
<p>
Different brushes have different spacing, leaving either a series of individual shapes, or a continuous stroke of the brush shape. Brush spacing may be adjusted. See the <a href="#brush_spacing">brush spacing</a> section of the "Paint" tool, above, to learn more. </p>
<div class="screenshot-center">
<img src="../../html/images/ex_lines.png"
width="76"
height="103"
alt="">
</div>
</dd>
<dt id="using_tools_drawing_shapes">
<strong>d.Mjeti “Forma”</strong>
</dt>
<dd>
<img src="../../html/images/tool_shapes.png"
width="48"
height="48"
alt=""
align="right">
<p>
This tool lets you draw some simple filled, and un-filled shapes. </p>
<p>
Select a shape from the selector on the right (circle, square, oval, etc.). </p>
<p>
Use the options at the bottom right to choose the shape tool's behavior: </p>
<dl>
<dt>
<strong>Forma që nga qendra</strong>
</dt>
<dd>
The shape will expand from where you initially clicked, and will be centered around that position. <br/>
<p class="note">
<span title="Version variation">📜</span> This was Tux Paint's only behavior through version 0.9.24.) </p>
</dd>
<dt>
<strong>Forma që nga cepi</strong>
</dt>
<dd>
The shape will extend with one corner starting from where you initially clicked. This is the default method of most other traditional drawing software. <p class="note">
<span title="Version variation">📜</span> This option was added starting with Tux Paint version 0.9.25. </p>
</dd>
</dl>
<p class="note">
<span title="Configuration option">⚙</span> <strong>Note:</strong> If shape controls are disabled (e.g., with the "<code>noshapecontrols</code>" option), the controls will not be presented, and the "shapes from center" method will be used. </p>
<p>
In the canvas, click the mouse and hold it to stretch the shape out from where you clicked. Some shapes can change proportion (e.g., rectangle and oval may be wider than tall, or taller than wide), others cannot (e.g., square and circle). </p>
<p>
For shapes that can change proportion, the aspect ratio of the shape will be shown at the bottom. For example: "1:1" will be shown if it is "square" (as tall as it is wide); "2:1" if it is either twice as wide as it is tall, or twice as tall as it is wide; and so on. </p>
<p>
Let go of the mouse when you're done stretching. </p>
<dl>
<dt>
<strong>Mënyra Forma Normale</strong>
</dt>
<dd>
<p>
Now you can move the mouse around the canvas to rotate the shape. The angle your shape is rotated will be shown at the bottom, in degrees (similar to the "Lines" tool, described above). </p>
<p>
Click the mouse button again and the shape will be drawn in the current color. </p>
</dd>
<dt>
<strong>Mënyra Forma të Thjeshta</strong>
</dt>
<dd>
If the "simple shapes" option is enabled, the shape will be drawn on the canvas when you let go of the mouse button. (There's no rotation step.) <p class="note">
<span title="Configuration option">⚙</span> See the "<a href="OPTIONS.html"><em>Options</em></a>" documentation to learn about the "forma të thjeshta" ("<code>simpleshapes</code>") option. </p>
</dd>
</dl>
<div class="screenshot-center">
<img src="../../html/images/ex_shapes.png"
width="177"
height="104"
alt="">
</div>
</dd>
<dt id="using_tools_drawing_text_and_label">
<strong>e.Mjete “Tekst” dhe “Etiketa”</strong>
</dt>
<dd>
<img src="../../html/images/tool_text.png"
width="48"
height="48"
alt=""
align="right">
<p>
Choose a font (from the 'Letters' available on the right) and a color (from the color palette near the bottom). You may also apply a bold, and/or an italic styling effect to the text. Click on the screen and a cursor will appear. Type text and it will show up on the screen. (You can change the font, color, and styling while entering the text, before it is applied to the canvas.) </p>
<p>
Press <b><code>[Tasti Enter]</code></b> or <b><code>[Tasti Return]</code></b> and the text will be drawn onto the picture and the cursor will move down one line. </p>
<p>
Alternatively, press <strong><code>[Tasti Tab]</code></strong> and the text will be drawn onto the picture, but the cursor will move to the right of the text, rather than down a line, and to the left. (This can be useful to create a line of text with mixed colors, fonts, styles and sizes.) </p>
<p>
Clicking elsewhere in the picture while the text entry is still active causes the current line of text to move to that location (where you can continue editing it). </p>
<div class="screenshot-center">
<img src="../../html/images/ex_text.png"
width="139"
height="69"
alt="">
</div>
<dl>
<dt>
<strong>“Tekst” krahasuar me “Etiketë”</strong>
</dt>
<dd>
<p>
The <strong>Text</strong> tool is the original text-entry tool in Tux Paint. Text entered using this tool can't be modified or moved later, since it becomes part of the drawing. However, because the text becomes part of the picture, it can be drawn over or modified using <strong>Magic</strong> tool effects (e.g., smudged, tinted, embossed, etc.) </p>
<p>
When using the <strong>Label</strong> tool (which was added to Tux Paint in version 0.9.22), the text 'floats' over the image, and the details of the label (the text, the position of the label, the font choice and the color) get stored separately. This allows the label to be repositioned or edited later. </p>
<p>
To edit a label, click the label selection button. All labels in the drawing will appear highlighted. Click one — or use the <strong><code>[Tasti Tab]</code></strong> key to cycle through all the labels, and the <strong><code>[Tasti Enter]</code></strong> or <strong><code>[Tasti Return]</code></strong> key to select one — and you may then edit the label. (Use they <strong><code>[Tasti Backspace]</code></strong> key to erase characters, and other keys to add text to the label; click in the canvas to reposition the label; click in the palette to change the color of the text in the label; etc.) </p>
<p>
You may "apply" a label to the canvas, painting the text into the picture as if it had been added using the <strong>Text</strong> tool, by clicking the label application button. (This feature was added in Tux Paint version 0.9.28.) All labels in the drawing will appear highlighted, and you select one just as you do when selecting a label to edit. The chosen label will be removed, and the text will be added directly to the canvas. </p>
<p class="note">
<span title="Configuration option">⚙</span> The <strong>Label</strong> tool can be disabled (e.g., by selecting "Disable 'Label' Tool" in <em>Tux Paint Config.</em> or running <em>Tux Paint</em> with the "<code>nolabel</code>" option). </p>
</dd>
<dt>
<strong>Futje Shenjash Ndërkombëtare</strong>
</dt>
<dd>
<p>
Tux Paint allows inputting characters in different languages. Most Latin characters (<em>A</em>-<em>Z</em>, <em>ñ</em>, <em>è</em>, etc.) can by entered directly. Some languages require that Tux Paint be switched into an alternate input mode before entering, and some characters must be composed using numerous keypresses. </p>
<p>
When Tux Paint's locale is set to one of the languages that provide alternate input modes, a key is used to cycle through normal (Latin character) and locale-specific mode or modes. </p>
<p>
Currently supported locales, the input methods available, and the key to toggle or cycle modes, are listed below. </p>
<ul>
<li>Japonisht — Hiragana të romanizuara dhe Katakana të romanizuara — tasti <code><b>[Alt]</b></code> i djathtë or tasti <code><b>[Alt]</b></code> i majtë </li>
<li>Korean — Hangul 2-Bul — tasti <code><b>[Alt]</b></code> i djathtë or tasti <code><b>[Alt]</b></code> i majtë </li>
<li>Traditional Chinese — tasti <code><b>[Alt]</b></code> i djathtë ose tasti <code><b>[Alt]</b></code> i majtë </li>
<li>Tajlandeze — tasti <code><b>[Alt]</b></code> i djathtë </li>
</ul>
<p class="note">
<span title="Information">💡</span> <strong>Note:</strong> Many fonts do not include all characters for all languages, so sometimes you'll need to change fonts to see the characters you're trying to type. </p>
</dd>
<dt>
<strong>Tastierë Në Ekran</strong>
</dt>
<dd>
<p>
An optional on-screen keyboard is available for the Text and Label tools, which can provide a variety of layouts and character composition (e.g., composing "a" and "e" into "æ"). </p>
<p class="note">
<span title="Configuration option">⚙</span> See the "<a href="OPTIONS.html"><em>Options</em></a>" and "<a href="EXTENDING.html"><em>Extending Tux Paint</em></a>" documentation for more information. </p>
</dd>
</dl>
</dd>
<dt id="using_tools_drawing_fill">
<strong>f.Mjeti “Mbushje”</strong>
</dt>
<dd>
<img src="../../html/images/tool_fill.png"
width="48"
height="48"
alt=""
align="right">
<p>
The 'Fill' tool 'flood-fills' a contiguous area of your drawing with a color of your choice. Three fill options are offered: <ul>
<li><strong>Solid</strong> — click once to fill an area with a solid color.</li>
<li><strong>Brush</strong> — click and drag to fill an area with a solid color using freehand painting.</li>
<li><strong>Linear</strong> — click and then drag to fill the area with color that fades away (a gradient) towards where you drag the mouse.</li>
<li><strong>Radial</strong> — click once to fill an area with a color that fades away (a gradient) radially, centered on where you clicked.</li>
<li><strong>Shaped</strong> — click once to fill an area with a color that fades away (a gradient), following the contours of the shape you're filling.</li>
<li><strong>Eraser</strong> — click once to erase an area, exposing the solid color background, or starter or template background image, upon which the drawing was based. (See <a href="#using_tools_drawing_eraser">Mjete të Mundshme > Mjete Vizatimi > Mjeti “Gomë”</a> and <a href="#new-starter-template">Kontrolle të Tjera > Figura “Fillesë” & Gjedhe</a>.)</li>
</ul>
</p>
<p class="note">
<span title="Version variation">📜</span> <strong>Note:</strong> Prior to Tux Paint 0.9.24, "Fill" was a Magic tool (see below). Prior to Tux Paint 0.9.26, the "Fill" tool only offered the 'Solid' method of filling. 'Shaped' fill was introduced in Tux Paint 0.9.29. </p>
</dd>
<dt id="using_tools_drawing_magic">
<strong>g.Mjeti “Magjik” (Efekte Speciale)</strong>
</dt>
<dd>
<img src="../../html/images/tool_magic.png"
width="48"
height="48"
alt=""
align="right">
<p>
The Magic tool is actually a set of special tools. Select one of the 'magic' effects from the selector on the right. Then, depending on the tool, you can either click and drag around the picture, and/or simply click the picture once, to apply the effect. </p>
<strong>The Magic Tools</strong>
<blockquote>
<p>
See the <a href="../magic-docs/html/index.html">instructions for each Magic tool</a> (in the 'magic-docs' folder). </p>
</blockquote>
<strong>Kontrolle &Magjiku</strong>
<blockquote>
<p>
If the tool can be used by clicking and dragging, a 'painting' button will be available on the left, below the list of Magic tools on the right side of the screen. If the tool can affect the entire picture at once, an 'entire picture' button will be available on the right. </p>
<div class="screenshot-center">
<img src=
"../../html/images/tool_magic_controls.png"
width="96"
height="48"
alt="">
</div>
<p class="note">
<span title="Configuration option">⚙</span> <strong>Note</strong>: If the "<code>nomagiccontrols</code>" option is set, Tux Paint won't display the painting or entire picture controls. See the "<a href="OPTIONS.html"><em>Options</em></a>" documentation. </p>
<p class="note">
<span title="Information">💡</span> If the magic controls are disabled, the Magic plugin may make separate tools available, one for painting and one that affects the entire pictre. </p>
</blockquote>
<strong>Magic Sizing</strong>
<blockquote>
<p>
Some tools offer different sizing options. If so, a slider will appear at the bottom right side of the screen. This may affect the radius of a special effect (e.g., Darken) or painted object (e.g., Patterns), or other attributes (e.g., large versus small Brick shapes). </p>
<div class="screenshot-center">
<img src=
"../../html/images/tool_slider.png"
width="96"
height="48"
alt="">
</div>
<p class="note">
<span title="Configuration option">⚙</span> <strong>Note</strong>: If the "<code>nomagicsizes</code>" option is set, Tux Paint won't display the sizing controls. See the "<a href="OPTIONS.html"><em>Options</em></a>" documentation. </p>
<p class="note">
<span title="Information">💡</span> If the sizing option is disabled, the Magic plugin may simply offer a default size (e.g., Patterns), or it may make separate tools available with different pre-set sizes (e.g., Bricks and Googly Eyes). </p>
<p class="note">
<span title="Version variation">📜</span> This option was added starting with Tux Paint version 0.9.30. </p>
</blockquote>
<p class="note">
<span title="Configuration option">⚙</span> <strong>Note</strong>: If the "<code>ungroupmagictools</code>" option is set, Tux Paint won't split Magic tools into groups of related tools, and instead present them all as one large list. See the "<a href="OPTIONS.html"><em>Options</em></a>" documentation. </p>
</dd>
<dt id="using_tools_drawing_eraser">
<strong>h.Mjeti “Gomë”</strong>
</dt>
<dd>
<img src="../../html/images/tool_eraser.png"
width="48"
height="48"
alt=""
align="right">
<p>
This tool works similarly to the Paint Brush. Wherever you click (or click and drag), things you've added to your drawing will be erased, exposing the background that you chose when you started the drawing, be it a solid color, the background of a 'Starter' image, or a 'Template' image. (See <a href="#using_tools_other_new">Mjete të Mundshme > Kontrolle të Tjera > Urdhri “I ri”</a>.) </p>
<p>
<img src="../../html/images/tool_eraser_erasers.png"
width="411"
height="192"
alt=""
align="right" />
A number of eraser types are available, each offering multiple sizes are available: <ul>
<li>
Square — Square-shaped erasers that completely remove parts of your drawing. </li>
<li>
Circle (solid) — Circle-shaped erasers that completely remove parts of your drawing. </li>
<li>
Fuzzy-edged Circle — Circle-shaped erasers with soft edges that blend with the background. </li>
<li>
Transparent Circle — Circle-shaped erasers that blend your drawing with the background. Release and click again to expose more and more of the background. </li>
</ul>
</p>
<p>
As you move the mouse around, an outline follows the pointer, showing what part of the picture will be erased. </p>
<p>
As you erase, a 'squeaky clean' eraser wiping sound is played. </p>
<p class="note">
<span title="Keyboard shortcut">⌨</span> Hold the <b><code>[X]</code></b> key while clicking for quick access to a small sharp round eraser (not available when the Text or Label tools are selected, when you're in the process of rotating a stamp or shape, or when using an interactive magic tool). Release the mouse to return to your currently-selected tool. </p>
</dd>
</dl>
</section>
<!-- Using: Tools: Drawing -->
<!-- Using: Tools: Other -->
<section>
<header>
<h3 id="using_tools_other">
2. Kontrolle të Tjera </h3>
</header>
<dl>
<dt id="using_tools_other_undo_and_redo">
<strong>a.Urdhrat “Ribëje” dhe “Zhbëje”</strong>
</dt>
<dd>
<img src="../../html/images/tool_redo.png"
width="48"
height="48"
alt=""
align="right">
<img src="../../html/images/tool_undo.png"
width="48"
height="48"
alt=""
align="right">
<p>
Clicking the "Undo" button will undo (revert) the last drawing action. You can even undo more than once! </p>
<p class="note">
<span title="Keyboard shortcut">⌨</span> <strong>Note:</strong> You can also press <b><code>[Tasti Kontroll / ⌘]</code></b> + <code><b>[Z]</b></code> on the keyboard to Zhbëje. </p>
<p>
Clicking the "Redo" button will redo the drawing action you just un-did via the "Undo" command. </p>
<p>
As long as you don't draw again, you can redo as many times as you had undone! </p>
<p class="note">
<span title="Keyboard shortcut">⌨</span> <strong>Note:</strong> You can also press <b><code>[Tasti Kontroll / ⌘]</code></b> + <code><b>[R]</b></code> on the keyboard to Ribëje. </p>
</dd>
<dt id="using_tools_other_new">
<strong>b.Urdhri “I ri”</strong>
</dt>
<dd>
<img src="../../html/images/tool_new.png"
width="48"
height="48"
alt=""
align="right">
<p>
Clicking the 'New' button will start a new drawing. A dialog will appear where you may choose to start a new picture using a solid background color, or using a 'Starter' or 'Template' image (<a href="#new-starter-template">see below</a>). You will first be asked whether you really want to do this. </p>
<p>
When you use the 'Eraser' tool things you've added to your drawing will be removed, exposing the background you chose when starting a new drawing. (See <a href="#using_tools_drawing_eraser">Mjete të Mundshme > Mjete Vizatimi > Mjeti “Gomë”</a>.)
<p class="note">
<span title="Keyboard shortcut">⌨</span> <strong>Note:</strong> You can also press <b><code>[Tasti Kontroll / ⌘]</code></b> + <code><b>[N]</b></code> on the keyboard to filloni një vizatim i ri. </p>
<dl>
<dt><strong>Special Solid Background Color Choices</strong></dt>
<dd>
Along with the preset solid colors, you can also choose colors using a rainbow palette or a "color mixer". These operate identically to the options found in the color palette shown below the canvas when drawing a picture. See <a href="#special_color_options">Skena Kryesore > Më Poshtë: Ngjyra > Special color options</a> for details. </dd>
<dt id="new-starter-template"><strong>Figura “Fillesë” & Gjedhe</strong></dt>
<dd>
<ul>
<li>'Starters' can behave like a page from a coloring book — a black-and-white outline of a picture, which you can then color in, and the black outline remains intact — or like a 3D photograph, where you draw in between a foreground and background layer.</li>
<li>'Templates' are similar, but simply provide a background drawing to work off of. Unlike 'Starters', there is no layer that remains in the foreground of anything you draw in the picture.</li>
</ul>
<p>
When using the 'Eraser' tool or the 'Eraser' mode of the 'Fill' tool, the original image from the 'Starter' or 'Template' will reappear. (See <a href="#using_tools_drawing_eraser">Mjete të Mundshme > Mjete Vizatimi > Mjeti “Gomë”</a> and <a href="#using_tools_drawing_fill">Mjeti “Mbushje”</a>.) </p>
<p>
The 'Flip' and 'Mirror' Magic tools affect the orientation of the 'Starter' or 'Template', as well. (See <a href="../magic-docs/html/flip.html">Mjete të Mundshme > Mjeti “Magjik” (Efekte Speciale) > Ktheje në anë tjetër</a> and <a href="../magic-docs/html/mirror.html">Pasqyroje</a>.) </p>
<p>
When you load a 'Starter' or 'Template', draw on it, and then click 'Save,' it creates a new picture file — it doesn't overwrite the original, so you can use it again later (by accessing it from the 'New' dialog). </p>
<p class="note">
<span title="Configuration option">⚙</span> You can create your own 'Starter' and Template images. See the <em>Extending Tux Paint</em> documentation's sections on <a href="EXTENDING.html#starters">'Starters'</a> and <a href="EXTENDING.html#templates">Templates</a>. </p>
<p class="note">
<span title="Information">💡</span> You can also convert your saved drawings into Templates directly within Tux Paint, from the 'Open' dialog. See "<a href="#using_tools_other_open">Open</a>", below. </p>
</dd>
<dt><strong>Fshirje Figurash Gjedhe të Eksportuara</strong></dt>
<dd>
<img src="../../html/images/open_erase.png"
width="48"
height="48"
alt=""
align="right">
<p>
If you've selected a Template in your personal templates folder, and it was created from within Tux Paint (using the "Template" button in the <a href="#using_tools_other_open">"Open"</a> dialog), you may remove it from within Tux Paint, too. An 'Erase' (trash can) button will appear at the lower right of the list. Click it to erase the selected template. (You will be asked to confirm.) </p>
<p class="note">
<span title="Information">💡</span> <strong>Note:</strong> On Linux, Windows, and macOS, the picture will be placed in your desktop's trash can / recycle bin (where you may recover and restore it, if you change your mind). </p>
<p class="note">
<span title="Configuration option">⚙</span> <strong>Note:</strong> The 'Erase' button may be disabled, via the "<code>noerase</code>" option. </p>
<div class="screenshot-right-after"></div>
</dd>
</dl>
<p class="note">
<span title="Configuration option">⚙</span> <strong>Note:</strong> The solid colors can be placed at the end of the 'New' dialog (below the Starters and Templates), via the "<code>newcolorslast</code>" option. </p>
</dd>
<dt id="using_tools_other_open">
<strong>c.Urdhri “Hape”</strong>
</dt>
<dd>
<img src="../../html/images/tool_open.png"
width="48"
height="48"
alt=""
align="right">
<p>
This shows you a list of all of the pictures you've saved. If there are more than can fit on the screen, use the up and down arrows at the top and bottom of the list to scroll through the list of pictures. </p>
<div class="screenshot-center">
<img src="../../html/images/open_dialog.jpg"
width="194"
height="152"
alt="">
</div>
<p>
Klikoni mbi një foto për ta përzgjedhur dhe mandej…
<ul>
<li>
<img src="../../html/images/open_open.png"
width="48"
height="48"
alt=""
align="right">
<p>
Click the green 'Open' button at the lower left of the list to load the selected picture. You will then be able to edit it. </p>
<p>
(Alternatively, you can double-click a picture's icon to load it.) </p>
<p class="note">
<span title="Information">💡</span> If choose to open a picture, and your current drawing hasn't been saved, you will be prompted as to whether you want to save it or not. (See "<a href="#using_tools_other_save">Save</a>," below.) </p>
<div class="screenshot-right-after"></div>
</li>
<li>
<img src="../../html/images/open_erase.png"
width="48"
height="48"
alt=""
align="right">
<p>
Click the brown 'Erase' (trash can) button at the lower right of the list to erase the selected picture. (You will be asked to confirm.) </p>
<p class="note">
<span title="Version variation">📜</span> <strong>Note:</strong> On Linux (as of version 0.9.22), Windows (as of version 0.9.27), and macOS (as of version 0.9.29), the picture will be placed in your desktop's trash can / recycle bin (where you may recover and restore it, if you change your mind). </p>
<p class="note">
<span title="Configuration option">⚙</span> <strong>Note:</strong> The 'Erase' button may be disabled, via the "<code>noerase</code>" option. </p>
<div class="screenshot-right-after"></div>
</li>
<li clear="all">
<img src="../../html/images/open_export.png"
width="48"
height="48"
alt=""
align="right">
<p>
Click the 'Export' button near the lower right to export the selected picture to your export folder. (e.g., "<code>~/Pictures/TuxPaint/</code>") </p>
<div class="screenshot-right-after"></div>
</li>
</ul>
</p>
<p>
Prej skenës “Hap” mundeni edhe të: <ul>
<li>
<img src="../../html/images/open_slides.png"
width="48"
height="48"
alt=""
align="right">
<p>
Klikon butonin blu “Diapozitiva” (projektor diapozitivash) poshtë majtas, për të kaluar nën mënyrën “shfaqje diapozitivash”. Për hollësi, shihni “<a href="#using_tools_other_open_slides">Diapozitiva</a>”,. </p>
<div class="screenshot-right-after"></div>
</li>
<li>
<img src="../../html/images/open_template.png"
width="48"
height="48"
alt=""
align="right">
<p>
Klikoni butonin blu “Gjedhe” poshtë majtas, për ta shndërruar në një gjedhe të re figurën e përzgjedhur, e cila mund të përdoret si bazë për vizatime të reja. </p>
<div class="screenshot-right-after"></div>
<p class="note">
<span title="Version variation">📜</span> <strong>Note:</strong> The Template creation feature was added to Tux Paint in version 0.9.31. Për të mësuar se si të krijohen Gjedhe jashtë Tux Paint-it, shihni <a href="EXTENDING.html#templates"><cite>Zgjerim i Tux Paint-it</cite></a> </p>
<p class="note">
<span title="Configuration option">⚙</span> The Template creation feature can be disabled (e.g., by selecting "Disable 'Make Template'" in <em>Tux Paint Config.</em> or running <em>Tux Paint</em> with the "<code>notemplateexport</code>" option). </p>
</li>
<li>
<img src="../../html/images/open_back.png"
width="48"
height="48"
alt=""
align="right">
<p>
Click the red 'Back' arrow button at the lower right of the list to cancel and return to the picture you were drawing. </p>
<div class="screenshot-right-after"></div>
</li>
</ul>
</p>
<p class="note">
<span title="Keyboard shortcut">⌨</span> <strong>Note:</strong> You can also press <b><code>[Tasti Kontroll / ⌘]</code></b> + <code><b>[O]</b></code> on the keyboard to hapni dialogun “Hap”. </p>
</dd>
<dt id="using_tools_other_save">
<strong>d.Urdhri “Ruaje”</strong>
</dt>
<dd>
<img src="../../html/images/tool_save.png"
width="48"
height="48"
alt=""
align="right">
<p>
Kjo bën ruajtjen e fotos tuaj të tanishme. </p>
<p>
If you haven't saved it before, it will create a new entry in the list of saved images. (i.e., it will create a new file) </p>
<p class="note">
<span title="Information">💡</span> <strong>Note:</strong> It won't ask you anything (e.g., for a filename). It will simply save the picture, and play a "camera shutter" sound effect. </p>
<p>
If you <em>have</em> saved the picture before, or this is a picture you just loaded using the "Open" command, you will first be asked whether you want to save over the old version, or create a new entry (a new file). </p>
<div class="screenshot-center">
<img src="../../html/images/saveover.png"
width="177"
height="110"
alt="">
</div>
<p class="note">
<span title="Configuration option">⚙</span> <strong>Note:</strong> If either the "<code>saveover</code>" or "<code>saveovernew</code>" options are set, it won't ask before saving over. See the "<a href="OPTIONS.html"><em>Options</em></a>" documentation. </p>
<p class="note">
<span title="Keyboard shortcut">⌨</span> <strong>Note:</strong> You can also press <b><code>[Tasti Kontroll / ⌘]</code></b> + <code><b>[S]</b></code> on the keyboard to save. </p>
</dd>
<dt id="using_tools_other_print">
<strong>e.Urdhri “Shtype”</strong>
</dt>
<dd>
<img src="../../html/images/tool_print.png"
width="48"
height="48"
alt=""
align="right">
<p>
Klikoni këtë buton dhe fotoja juaj do të shtypet! </p>
<p>
On most platforms, you can also hold the <b><code>[Alt]</code></b> key (called <b><code>[Mundësi]</code></b> on Macs) while clicking the 'Print' button to get a printer dialog. Note that this may not work if you're running Tux Paint in fullscreen mode. See below. </p>
<dl>
<dt>
<strong>Çaktivizim Shtypjesh</strong>
</dt>
<dd>
<p>
The "<code>noprint</code>" option can be set, which will disable Tux Paint's 'Print' button. </p>
<p class="note">
<span title="Configuration option">⚙</span> See the "<a href="OPTIONS.html"><em>Options</em></a>" documentation. </p>
</dd>
<dt>
<strong>Kufizim Shtypjesh</strong>
</dt>
<dd>
<p>
The "<code>printdelay</code>" option can be set, which will only allow occasional printing — once every so many seconds, as configured by you. </p>
<p>
For example, with "<code>printdelay=60</code>" in Tux Paint's configuration file, printing can only occur once per minute (60 seconds). </p>
<p class="note">
<span title="Configuration option">⚙</span> See the "<a href="OPTIONS.html"><em>Options</em></a>" documentation. </p>
</dd>
<dt>
<strong>Urdhra Shtypjeje</strong>
</dt>
<dd>
<p>
<em>(Vetëm në Linux dhe Unix)</em>
</p>
<p>
Tux Paint prints by generating a PostScript representation of the drawing and sending it to an external program. By default, the program is: </p>
<blockquote>
<code>lpr</code>
</blockquote>
<p>
This command can be changed by setting a "<code>printcommand</code>" option in Tux Paint's configuration file. </p>
<p>
An alternative print command can be invoked by holding the "<b><code>[Alt]</code></b>" key on the keyboard while clicking clicking the 'Print' button, as long as you're not in fullscreen mode, an alternative program is run. By default, the program is KDE's graphical print dialog: </p>
<blockquote>
<code>kprinter</code>
</blockquote>
<p>
This command can be changed by setting a "<code>altprintcommand</code>" option in Tux Paint's configuration file. </p>
<p class="note">
<span title="Configuration option">⚙</span> See the "<a href="OPTIONS.html"><em>Options</em></a>" documentation. </p>
</dd>
<dt>
<strong>Rregullime Shtypësi</strong>
</dt>
<dd>
<p>
<em>(Windows dhe macOS)</em>
</p>
<p>
By default, Tux Paint simply prints to the default printer with default settings when the 'Print' button is pushed. </p>
<p>
However, if you hold the <b><code>[Alt]</code></b> (or <b><code>[Mundësi]</code></b>) key on the keyboard while clicking the 'Print' button, as long as you're not in fullscreen mode, your operating system's printer dialog will appear, where you can change the settings. </p>
<p>
You can have the printer configuration changes stored between Tux Paint sessions by setting the "<code>printcfg</code>" option. </p>
<p>
If the "<code>printcfg</code>" option is used, printer settings will be loaded from the file "<code>printcfg.cfg</code>" in your personal folder (see below). Any changes will be saved there as well. </p>
<p class="note">
<span title="Configuration option">⚙</span> See the "<a href="OPTIONS.html"><em>Options</em></a>" documentation. </p>
</dd>
<dt>
<strong>Mundësi Dialogu Shtypësi</strong>
</dt>
<dd>
<p>
By default, Tux Paint only shows the printer dialog (or, on Linux/Unix, runs the "<code>altprintcommand</code>"; e.g., "<code>kprinter</code>" instead of "<code>lpr</code>") if the <b><code>[Alt]</code></b> (or <b><code>[Mundësi]</code></b>) key is held while clicking the 'Print' button. </p>
<p>
However, this behavior can be changed. You can have the printer dialog always appear by using "<code>--altprintalways</code>" on the command-line, or "<code>altprint=always</code>" in Tux Paint's configuration file. Conversely, you can prevent the <b><code>[Alt]</code></b>/<b><code>[Mundësi]</code></b> key from having any effect by using "<code>--altprintnever</code>", or "<code>altprint=never</code>". </p>
<p class="note">
<span title="Configuration option">⚙</span> See the "<a href="OPTIONS.html"><em>Options</em></a>" documentation. </p>
</dd>
</dl>
</dd>
<dt id="using_tools_other_open_slides">
<strong>f.Urdhri “Diapozitiva” (nën “Hape”)</strong>
</dt>
<dd>
<img src="../../html/images/open_slides.png"
width="48"
height="48"
alt=""
align="right">
<p>
The 'Slides' button is available in the 'Open' dialog. It can be used to play a simple animation within Tux Paint, or a slideshow of pictures. It can also export an animated GIF based on the chosen images. </p>
<dl>
<dt>
<strong>Zgjedhje fotosh</strong>
</dt>
<dd>
<p>
When you enter the 'Slides' section of Tux Paint, it displays a list of your saved files, just like the 'Open' dialog. </p>
<p>
Click each of the images you wish to display in a slideshow-style presentation, one by one. A digit will appear over each image, letting you know in which order they will be displayed. </p>
<p>
You can click a selected image to unselect it (take it out of your slideshow). Click it again if you wish to add it to the end of the list. </p>
</dd>
<dt>
<strong>Caktoni shpejtësi luajtjeje</strong>
</dt>
<dd>
<p>
A sliding scale at the lower left of the screen (next to the 'Play' button) can be used to adjust the speed of the slideshow or animated GIF, from slowest to fastest. Choose the leftmost setting to disable automatic advancement during playback within Tux Paint — you will need to press a key or click to go to the next slide (see below). </p>
<p class="note">
<span title="Information">💡</span> <strong>Note:</strong> The slowest setting does not automatically advance through the slides. Use it for when you want to step through them manually. (This does not apply to an exported animated GIF.) </p>
<div class="screenshot-center">
<img src=
"../../html/images/tool_slider.png"
width="96"
height="48"
alt="">
</div>
</dd>
<dt>
<strong>Luajtje në Tux Paint</strong>
</dt>
<dd>
<p>
To play a slideshow within Tux Paint, click the 'Play' button. </p>
<p class="note">
<span title="Information">💡</span> <strong>Note</strong>: If you hadn't selected any images, then <em>all</em> of your saved images will be played in the slideshow! </p>
<p>
During the slideshow, press <b><code>[Tasti Hapësirë]</code></b>, <b><code>[Tasti Enter]</code></b> or <b><code>[Tasti Return]</code></b>, or the <b><code>[Shigjeta djathtas]</code></b> — or click the 'Next' button at the lower left — to manually advance to the next slide. Press <b><code>[Shigjeta majtas]</code></b> to go back to the previous slide. </p>
<p>
Press <b><code>[Tasti Escape]</code></b>, or click the 'Back' button at the lower right, to exit the slideshow and return to the slideshow image selection screen. </p>
</dd>
<dt>
<strong>Eksportim i një Gif-i të animuar</strong>
</dt>
<dd>
<p>
<img src=
"../../html/images/open_slides_export_gif.png"
width="48"
height="48"
alt=""
align="right">
Click the 'GIF Export' button near the lower right to have Tux Paint generate an animated GIF file based on the selected images. </p>
<p class="note">
<span title="Information">💡</span> <strong>Note:</strong> At least two images must be selected. (To export a single image, use the 'Export' option from the main 'Open' dialog.) If no images are selected, Tux Paint will <em>not</em> attempt to generate a GIF based on all saved images. </p>
<p>
Pressing <b><code>[Tasti Escape]</code></b> during the export process will abort the process, and return you to the 'Slideshow' dialog. </p>
</dd>
</dl>
<p>
Click 'Back' in the slideshow image selection screen to return to the 'Open' dialog. </p>
</dd>
<dt id="using_tools_other_quit">
<strong>g.Urdhëri “Dil”</strong>
</dt>
<dd>
<img src="../../html/images/tool_quit.png"
width="48"
height="48"
alt=""
align="right">
<p>
Clicking the 'Quit' button, closing the Tux Paint window, or pushing the <b><code>[Tasti Escape]</code></b> key will quit Tux Paint. </p>
<p>
You will first be prompted as to whether you really want to quit. </p>
<p>
If you choose to quit, and you haven't saved the current picture, you will first be asked if wish to save it. If it's not a new image, you will then be asked if you want to save over the old version, or create a new entry. (See "<a href="#using_tools_other_save">Save</a>" above.) </p>
<p class="note">
<span title="Configuration option">⚙</span> <strong>Note:</strong> If the image is saved, it will be reloaded automatically the next time you run Tux Paint -- unless the "<code>startblank</code>" option is set. </p>
<p class="note">
<span title="Configuration option">⚙</span> <strong>Note:</strong> The 'Quit' button within Tux Paint, and quitting via the <b><code>[Tasti Escape]</code></b> key, may be disabled, via the "<code>noquit</code>" option. </p>
<p>
In that case, the "window close" button on Tux Paint's title bar (if not in fullscreen mode) or the <b><code>[Alt]</code></b> + <b><code>[F4]</code></b> key sequence may be used to quit. </p>
<p>
If neither of those are possible, the key sequence of <b><code>[Tasti Shift]</code></b> + <b><code>[Tasti Kontroll / ⌘]</code></b> + <b><code>[Tasti Escape]</code></b> may be used to quit. </p>
<p class="note">
<span title="Configuration option">⚙</span> See the "<a href="OPTIONS.html"><em>Options</em></a>" documentation. </p>
</dd>
<dt id="using_tools_other_sound_muting">
<strong>h.Heqje Tingujsh</strong>
</dt>
<dd>
<p>
There is no on-screen control button at this time, but by using the <b><code>[Alt]</code></b> + <b><code>[S]</code></b> keyboard sequence, sound effects can be disabled and re-enabled (muted and unmuted) while the program is running. </p>
<p>
Note that if sounds are completely disabled via the "<code>nosound</code>" option, the <b><code>[Alt]</code></b> + <b><code>[S]</code></b> key combination has no effect. (i.e., it cannot be used to turn on sounds when the parent/teacher wants them disabled.) </p>
<p class="note">
<span title="Configuration option">⚙</span> See the "<a href="OPTIONS.html"><em>Options</em></a>" documentation. </p>
</dd>
</dl>
</section>
<!-- Using: Tools: Other -->
</section>
<!-- Using: Tools -->
<!-- Using: Controlling -->
<section>
<header>
<h2 id="using_controlling">
E. Kontrollim i Tux Paint-it </h2>
</header>
<!-- Using: Controlling: Mouse -->
<section>
<header>
<h3 id="using_controlling_mouse">
1. Përdorim i një Miu ose Trackball-i </h3>
</header>
<p>
Tux Paint's main mode of operation is via any device that appears to your operating system as a mouse, including standard mice, trackballs, and trackpads, as well as drawing tablets (usually operated with a stylus) and touch screens (operated with a finger and/or a stylus) (see <a href="#using_controlling_tablet">"Using a Tablet or Touchscreen"</a> below for more information). </p>
<p>
For drawing and controlling Tux Paint, only a single mouse button is used — typically, on multi-button mice, this will the left mouse button, but this can usually be configured at the operating system level. By default, Tux Paint will ignore input from the other button(s). If a user attempts to use the other button(s), a pop-up dialog will eventually appear reminding them that only one button is recognized Tux Paint. However, you may configure Tux Paint to accept any button as input (see the <a href="OPTIONS.html#mouse_keyboard">Options</a> documentation). </p>
<section>
<header>
<h4>
a. Rrëshqitje </h4>
</header>
<p>
Many input devices offer a way to quickly scroll within applications — many mice have a scroll wheel, trackballs have scroll rings, and trackpads recognize certain "scroll" gestures (e.g., two-finger vertical motion, or vertical motion on the edge of the trackpad). Tux Paint supports scrolling input to allow quick scrolling through certain lists (e.g., Stamps, Magic tools, and the New and Open dialogs). </p>
<p>
Tux Paint will also automatically scroll if you click and hold the mouse down on an scroll button — the "up" and "down" arrow buttons that appear above and below scrolling lists. </p>
</section>
<section>
<header>
<h4>
b. Përdorim Miu Nga Persona Me Aftësi të Kufizuar </h4>
</header>
<p>
Other devices that appear as a mouse can be used to control Tux Paint. For example: <ul>
<li>Head pointing/tracking devices</li>
<li>Ndjekës vështrimi</li>
<li>Mij këmbe</li>
</ul>
</p>
<p>
Tux Paint offers a "sticky mouse click" accessibility setting, where a single click begins a click-and-drag operation, and a subsequent click ends it. (See the <a href="OPTIONS.html#accessibility">Options</a> documentation.) </p>
</section>
</section>
<!-- Using: Controlling: Mouse -->
<!-- Using: Controlling: Tablet -->
<section>
<header>
<h3 id="using_controlling_tablet">
2. Përdorim i një Tableti, ose Ekrani Me Prekje </h3>
</header>
<p>
As noted above, Tux Paint recognizes any device that appears as a mouse. This means drawing tablets and touchscreens may be used. However, these devices often support other features beyond X/Y motion, button clicks, and scroll-wheel motion. Currently, those additional features are <strong>not supported</strong> by Tux Paint. Some examples: <ul>
<li>Trysni dhe kënd</li>
<li>Majë gome</li>
<li>Gjeste multi-touch</li>
</ul>
</p>
</section>
<!-- Using: Controlling: Tablet -->
<!-- Using: Controlling: Joystick -->
<section>
<header>
<h3 id="using_controlling_joystick">
3. Përdorimi i një Pajisjeje të Ngashme me një “Joystick” </h3>
</header>
<p>
Tux Paint may be configured to recognize input from any game controller that appears to your operating system as a joystick. That even includes modern game console controllers connected via USB or Bluetooth (e.g., <cite>Nintendo Switch</cite> or <cite>Microsoft Xbox</cite> game pads)! </p>
<p>
Numerous configuration options are available to best suit the device being used, and the user's needs. Analog input will be used for coarse movement, and digital "hat" input for fine movement. Buttons on the controller can be mapped to different Tux Paint controls (e.g., acting as the <b><code>[Tasti Escape]</code></b> key, switching to the Paint tool, invoking Undo and Redo operations, etc.). See the <a href="OPTIONS.html#joystick">Options</a> documentation for more details. </p>
</section>
<!-- Using: Controlling: Joystick -->
<!-- Using: Controlling: Keyboard -->
<section>
<header>
<h3 id="using_controlling_keyboard">
4. Përdorim i Tastierës </h3>
</header>
<p>
Tux Paint offers an option to allow the keyboard to be used to control the mouse pointer. This includes motion and clicking, as well as shortcuts to navigate between and within certain parts of the interface. See the <a href="OPTIONS.html#accessibility">Options</a> documentation for more details. </p>
</section>
<!-- Using: Controlling: Keyboard -->
</section>
<!-- Using: Controlling -->
</section>
<!-- Using -->
<section class="outer indent">
<header>
<h1 id="loading_into">
III. Ngarkim Figurash të Tjera në Tux Paint </h1>
</header>
<section class="inner">
<header>
<h2>
A. Përmbledhje </h2>
</header>
<p>
Tux Paint's 'Open' dialog only displays pictures you created with Tux Paint. So what do you do if you want to load some other drawinng or even a photograph into Tux Paint, so you can edit or draw on it? </p>
<p>
You can simply convert the picture to the format Tux Paint uses — PNG (Portable Network Graphic) — and place it in Tux Paint's "<code>saved</code>" directory/folder. Here is where to find it (by default): </p>
<dl>
<dt>
<cite>Windows Windows 7, Windows 8, Windows 10, Windows 11</cite>
</dt>
<dd>
In the user's "AppData" folder:<br> e.g., <nobr>"<code style='background: #EEE;'>C:\Users\emër përdoruesi\AppData\Roaming\TuxPaint\saved\</code>"</nobr> </dd>
<dt>
<cite>macOS</cite>
</dt>
<dd>
In the user's "Application Support" folder:<br> e.g., <nobr>"<code style='background: #EEE;'>/Users/<i>emër përdoruesi</i>/Library/Application Support/TuxPaint/saved/</code>"</nobr> </dd>
<dt>
<cite>Linux / Unix</cite>
</dt>
<dd>
In the user's "home directory" folder:<br> e.g., <nobr>"<code style='background: #EEE;'>/home/emër përdoruesi/.tuxpaint/saved/</code>"</nobr> </dd>
<dt>
<cite>Haiku</cite>
</dt>
<dd>
In the user's "settings" folder:<br> e.g., <nobr>"<code style='background: #EEE;'>/boot/home/config/settings/TuxPaint/saved/</code>"</nobr> </dd>
</dl>
<p class="note">
<span title="Information">💡</span> <strong>Note:</strong> It is also from this folder that you can copy or open pictures drawn in Tux Paint using <em>other</em> applications, though the 'Export' option from Tux Paint's 'Open' dialog can be used to copy them to a location that's easier and safer to access. </p>
</section>
<section class="inner">
<header>
<h2>
B. Përdorim i programthit të importimit, “<code>tuxpaint-import</code>” </h2>
</header>
<p>
Linux and Unix users can use the "<code>tuxpaint-import</code>" shell script which gets installed when you install Tux Paint. It uses some NetPBM tools to convert the image ("<code>anytopnm</code>"), resize it so that it will fit in Tux Paint's canvas ("<code>pnmscale</code>"), and convert it to a PNG ("<code>pnmtopng</code>"). </p>
<p>
It also uses the "<code>date</code>" command to get the current time and date, which is the file-naming convention Tux Paint uses for saved files. (Remember, you are never asked for a 'filename' when you go to save or open pictures!) </p>
<p>
To use this script, simply run it from a command-line prompt, and provide it the name(s) of the file(s) you wish to convert. </p>
<p>
They will be converted and placed in your Tux Paint "<code>saved</code>" directory. </p>
<p class="note">
<span title="Information">💡</span> <strong>Note:</strong> If you're doing this for a different user (e.g., your child) you'll need to make sure to run the command under <em>their</em> account.) </p>
<p>
Shembull: </p>
<blockquote>
<code>$ <strong>tuxpaint-import grandma.jpg</strong><br>
grandma.jpg ->
/home/username/.tuxpaint/saved/20211231012359.png<br>
jpegtopnm: WRITING A PPM FILE</code>
</blockquote>
<p>
The first line ("<code>tuxpaint-import grandma.jpg</code>") is the command to run. The following two lines are output from the program while it's working. </p>
<p>
Now you can load Tux Paint, and a version of that original picture will be available under the 'Open' dialog. Just double-click its icon! </p>
</section>
<section class="inner">
<header>
<h2>
C. Importim Fotosh Dorazi </h2>
</header>
<p>
Windows, macOS, and Haiku users who wish to import arbitrary images into Tux Paint must do so via a manual process. </p>
<p>
Load a graphics program that is capable of both loading your picture and saving a PNG format file. (See the documentation file "<a href="PNG.html">PNG.html</a>" for a list of suggested software, and other references.) </p>
<p>
When Tux Paint loads an image that's not the same size as its drawing canvas, it scales (and sometimes smears the edges of) the image so that it fits within the canvas. </p>
<p>
To avoid having the image stretched or smeared, you can resize it to Tux Paint's canvas size. This size depends on the size of the Tux Paint window, or resolution at which Tux Paint is run, if in fullscreen. (<strong>Note:</strong> The default resolution is 800x600.) See "Llogaritje Përmasash Figure", below. </p>
<section class="inner">
<header>
<h3>
1. Emërtim i Kartelës </h3>
</header>
<p>
Save the picture in PNG format. It is <strong>highly</strong> recommended that you name the filename using the current date and time, since that's the convention Tux Paint uses: </p>
<blockquote>
<code><strong>VVVVMMDDhhmmss</strong>.png</code>
</blockquote>
<ul>
<li><code>VVVV</code> = Vit</li>
<li><code>MM</code> = Muaj (dy shifra, “01”-“12”)</li>
<li><code>DD</code> = Ditë e muajit (dy shifra, “01”-“31”)</li>
<li><code>HH</code> = Hour (two digits, in 24-hour format, "00"-"23")</li>
<li><code>mm</code> = Minutë (dy shifra, “00”-“59”)</li>
<li><code>ss</code> = Sekonda (dy shifra, “00”-“59”)</li>
</ul>
<p>
Example: "<code>20210731110500.png</code>", for July 31, 2021 at 11:05am. </p>
<p>
Place this PNG file in your Tux Paint "<code>saved</code>" directory/folder. (See above.) </p>
</section>
<section class="inner">
<header>
<h3>
2. Llogaritje Përmasash Figure </h3>
</header>
<p>
This part of the documentation needs to be rewritten, since the new "<code>buttonsize</code>" option was added. For now, try drawing and saving an image within Tux Paint, then determine what size (pixel width and height) it came out to, and try to match that when scaling the picture(s) you're importing into Tux Paint. </p>
</section>
</section>
</section>
<section class="outer indent">
<header>
<h1 id="further">
IV.Lexim i Mëtejshëm </h1>
</header>
<p>
Other documentation included with Tux Paint (found in the "<code>docs</code>" folder/directory) includes: <dl>
<dt>
Përdorim i Tux Paint-it: </dt>
<dd>
<ul>
<li>
<a href="OPTIONS.html">OPTIONS.html</a><br>
Detailed instructions on command-line and configuration-file options, for those who don't want to use the Tux Paint Config. tool to manage Tux Paint's configuration. </li>
<li>
<a href="../magic-docs/html/index.html">Dokumentim i Mjetit “Magjik” (“<code>magic-docs</code>”)</a><br>
Documentation for each of the currently-installed 'Magic' tools. </li>
<li>
<a href="FAQ.html">Frequently Asked Questions ("FAQs") about Tux Paint</a><br>
Answers to, and solutions for, some common questions about, and problems with, using Tux Paint. </li>
</ul>
</dd>
<dt>
Si të zgjerohet Tux Paint-i: </dt>
<dd>
<ul>
<li>
<a href="EXTENDING.html">EXTENDING.html</a><br>
Detailed instructions on extending Tux Paint: creating brushes, stamps, starters, and templates; adding fonts; and creating new on-screen keyboard layouts and input methods. </li>
<li>
<a href="PNG.html">PNG.html</a><br>
Notes on creating PNG format bitmapped (raster) images for use in Tux Paint. </li>
<li>
<a href="SVG.html">SVG.html</a><br>
Notes on creating SVG format vector images for use in Tux Paint. </li>
</ul>
</dd>
<dt>
Hollësi teknike: </dt>
<dd>
<ul>
<li>
<a href="INSTALL.html">INSTALL.html</a><br>
Instructions for compiling and installing Tux Paint, when applicable. </li>
<li>
<a href="SIGNALS.html">SIGNALS.html</a><br>
Information about the POSIX signals that Tux Paint responds to. </li>
<li>
<a href="MAGIC-API.html">MAGIC-API.html</a><br>
Creating new Magic tools using Tux Paint's plugin API. </li>
</ul>
</dd>
<dt>
Historik zhvillimi dhe licencë: </dt>
<dd>
<ul>
<li>
<a href="../../AUTHORS.txt">AUTHORS.txt</a><br>
Listë e autorëve dhe kontribuesve. </li>
<li>
<a href="../../CHANGES.txt">CHANGES.txt</a><br>
Summary of what has changed between releases of Tux Paint. </li>
<li>
<a href="../../COPYING.txt">COPYING.txt</a><br>
Tux Paint's software license, the <cite>GNU General Public License</cite> (GPL) </li>
</ul>
</dd>
</dl>
</p>
</section>
<section class="outer indent">
<header>
<h1 id="help">
V.Si të Merret Ndihmë </h1>
</header>
<p>
If you need help, there are numerous ways to interact with Tux Paint developers and other users: <ul>
<li>Report bugs or request new features via the project's bug-tracking system</li>
<li>Participate in the various project mailing lists</li>
<li>Lidhuni drejtpërdrejt me zhvilluesit</li>
</ul>
</p>
<p>
To learn more, visit the "Kontakt" page of the official Tux Paint website: <a href="https://tuxpaint.org/contact/">https://tuxpaint.org/contact/</a> </p>
</section>
<section class="outer indent">
<header>
<h1 id="participate">
VI.Si të Merret Pjesë </h1>
</header>
<p>
Tux Paint is a volunteer-driven project, and we're happy to accept your help in a variety of ways:
<ul>
<li>Përkthejeni Tux Paint-in në gjuhë tjetër</li>
<li>Përmirësoni përkthimet ekzistuese</li>
<li>Create artwork (stamps, starters, templates, brushes)</li>
<li>Add or improve features or magic tools</li>
<li>Krijoni një plan lënde klase</li>
<li>Promote or help support others using Tux Paint</li>
</ul>
</p>
<p>
To learn more, visit the "Ndihmonani" page of the official Tux Paint website: <a href="https://tuxpaint.org/help/">https://tuxpaint.org/help/</a> </p>
</section>
<section class="outer indent">
<header>
<h1 id="participate">
VII.Ndiqeni projektin Tux Paint në media shoqërore </h1>
</header>
<p>
Tux Paint maintains a presence on a variety of social media networks, where we post updates and artwork.
<ul>
<li>
<a href="https://bsky.app/profile/tuxpaint.bsky.social">Ndiqeni @tuxpaint.bsky.social në Bluesky</a>
</li>
<li>
<a href="http://www.facebook.com/TuxPaint">Bëhuni pjesë e faqes Facebook të Tux Paint-it</a>
</li>
<li>
<a href="https://www.instagram.com/tuxpaintdevs/">Ndiqeni @TuxPaintDevs në Instagram</a>
</li>
<li>
<a href="https://floss.social/@tuxpaint">Ndiqeni @tuxpaint@floss.social në Mastodon</a>
</li>
<li>
<a href="https://www.reddit.com/user/TuxPaintDevs/">Ndiqeni u/TuxPaintDevs në Reddit</a>
</li>
<li>
<a href="https://www.threads.net/@tuxpaintdevs">Ndiqeni @TuxPaintDevs në Threads</a>
</li>
<li>
<a href="https://www.tiktok.com/@tuxpaintdevs">Ndiqeni @TuxPaintDevs në TikTok</a>
</li>
<li>
<a href="https://tuxpaint.tumblr.com/">Ndiqeni Tux Paint në Tumblr</a>
</li>
<li>
<a href="https://www.youtube.com/@TuxPaintOfficial">Pajtohuni te @TuxPaintOfficial në YouTube</a>
</li>
</ul>
</p>
</section>
<footer>
<section class="outer">
<header>
<h1>
VIII. Shënime shenjash tregtare</a>
</h1>
</header>
<ul>
<li>"Linux" is a registered trademark of Linus Torvalds.</li>
<li>"Microsoft" and "Windows" are registered trademarks of Microsoft Corp.</li>
<li>"Apple" and "macOS" are registered trademarks of Apple Inc.</li>
<li>"Haiku" is a registered trademark of Haiku, Inc.</li>
<li>"Facebook", "Instagram", and "Threads" are registered trademarks of Meta Platforms, Inc.</li>
<li>"Mastodon" is a registered trademark of Mastodon gGmbH.</li>
<li>"Reddit" is a registered trademark of Reddit, Inc.</li>
<li>"TIK TOK" is a trademark of Bytedance Ltd.</li>
<li>"Tumblr" is a registered trademark of Tumblr, Inc.</li>
<li>"YouTube" is a registered trademark of Alphabet, Inc.</li>
</ul>
</section>
</footer>
</body>
</html>
|