The Book of Qt 4 to Be Indispensable

Total Page:16

File Type:pdf, Size:1020Kb

The Book of Qt 4 to Be Indispensable THETHE BOOKBOOK ofof QtQt 4.4. FROMFROM THETHE BASICSBASICS THROUGHTHROUGH APPLICATIONAPPLICATION THETHE DESIGN.DESIGN. BOOK of QtQt 44 THE ART OF BUILDING Qt APPLICATIONS Cross-platform development is a kind of holy grail, and • Data visualization using Qt’s model/view concept Trolltech’s Qt toolkit may well be the most promising • The QtSql module and the graphics library Arthur solution yet to this development challenge. Qt is widely DANIEL MOLKENTIN used for the development of GUI applications as well • File handling, XML, processes, and network connections as console tools and servers, and it’s especially appeal- • Databases and threading ing to programmers who need to write cross-platform Qt 4 applications to run on Linux/Unix, Mac, and Windows • Event handling and using drag and drop Qt 4 machines without having to rewrite for each platform. • Internationalization and debugging The Book of ™ Qt 4 offers an in-depth explanation of Qt As well as lots of useful hints on how to use Qt’s data- 4 that goes beyond the common focus on C++ program- types, containers, and algorithms and how to develop ming. Author Daniel Molkentin uses practical examples user-friendly applications. to explain features like the signal/slot concept and the event system, as he guides you through developing Whether you’re already a Qt developer or you’re just applications with and without Qt’s graphical GUI builder, considering Qt for cross-platform development, you’ll Qt Designer. And as a core KDE developer, Molkentin’s find The Book of Qt 4 to be indispensable. head is full of real-world problems and solutions that he ABOUT THE AUTHOR peppers liberally throughout The Book of Qt 4, making it a resource that you’ll consult time and again. Daniel “danimo” Molkentin has been a core developer with the KDE project since 2000, and he’s the co-author You’ll find coverage of: of the PIM application Kontact, among other applications. • Tools for creating dialogs He was actively involved in the development of Qt 4 as a beta tester, and he worked with the initial port of KDE to • GUI design with the Qt Designer the new Qt version. • Widget layout and dialog construction MOLKENTIN THE FINEST IN GEEK ENTERTAINMENT™ $54.95 ($65.95 CDN) PROGRAMMING SHELVE IN: www.nostarch.com “I LAY FLAT.” This book uses RepKover —a durable binding that won’t snap shut. ® Printed on recycled paper The Book of Qt 4 Daniel Molkentin TheBook of Qt 4 TheArt of BuildingQtApplications ® Munich SanFrancisco The Book of Qt 4: The ArtofBuildingQtApplications. Copyright " c 2007OpenSource PressGmbH Allrightsreserved.Nopartofthisworkmaybe reproducedortransmittedinanyform or byanymeans, electronic or mechanical, includingphotocopying, recording, or byanyinformationstorageorretrieval system,without theprior writtenpermission of thecopyright ownerand thepublisher. Printedonrecycled paperinthe United States of America. 12345678910—10090807 No Starch Pressand theNoStarch Presslogo areregisteredtrademarksofNoStarch Press, Inc. Otherproduct and companynamesmentioned herein maybe thetrademarksoftheir respectiveowners.Ratherthanuse atrademark symbol witheveryoccurrence of atrademarked name,weare usingthe namesonlyin an editorialfashionand to the benefit of thetrademark owner, withnointention of infringement of thetrademark. Publisher: William Pollock Cover Design:Octopod Studios U.S. editionpublishedbyNo Starch Press, Inc. 555 De HaroStreet,Suite 250,San Francisco, CA 94107 phone: 415.863.9900;fax:415.863.9950;[email protected];http://www.nostarch.com Original edition " c 2006OpenSource PressGmbH PublishedbyOpenSource PressGmbH, Munich, Germany Publisher: Dr.Markus Wirtz Original ISBN 978-3-937514-12-3 For informationontranslations, pleasecontact OpenSource PressGmbH, Amalienstr.45Rg, 80799 M unche¨ n, Germany phone+49.89.28755562; fax+49.89.28755563; [email protected];http://www.opensourcepress.de Theinformationinthisbook is distributed on an “AsIs” basis, without warranty.While everyprecaution hasbeen takeninthe preparationofthiswork, neitherthe author norOpenSource PressGmbHnor No Starch Press, Inc. shall haveanyliabilityto anyperson or entitywithrespect to anyloss or damage caused or allegedtobecaused directly or indirectlybytheinformationcontained in it. LibraryofCongressCataloging-in-Publication Data Molkentin, Daniel [Qt4, Einf¨uhrung in die Applikationsentwicklung.English] The book of Qt4: the art of building Qtapplications/byDaniel Molkentin.-- 1st ed. p. cm. Includesindex. ISBN-13978-1-59327-147-3 ISBN-101-59327-147-6 1.Qt(Electronic resource)2.Graphicaluserinterfaces(Computersystems) 3. Application software--Development. I.Title.QA76.9.U83M62132007 005.4’37--dc22 2007013181 Contents Introduction 19 Preparations23 1Basics, Tools, andFirst Code 25 1.1Our FirstQtProgram .......................... 25 1.1.1CompilingaQtProgram ................... 27 1.2Layouts,Object Hierarchy,and MemoryManagement ........ 29 1.2.1Howto ArrangeWidgets Automatically........... 29 1.2.2MemoryManagement in Object Hierarchies........ 31 1.2.3Other LayoutTypes...................... 33 1.3Signals andSlots ............................ 35 1.3.1The SimplestCase: ASlotResponds to aSignal...... 35 1.3.2Signals CarryingAdditional Information andHowThey AreProcessed. ........................ 36 1.4BaseClassesinQt........................... 39 1.4.1ClassesDerived from QObject ................ 39 1.4.2QString andOther Classesnot Derived from QObject ... 40 1.4.3The Qt InheritanceHierarchy................ 41 1.5QtataGlance ............................. 42 1.5.1The Qt Libraries........................ 42 1.5.2Toolsand Utilities...................... 47 1.5.3Examples andDemos ..................... 58 1.6Howto Use theDocumentation................... 59 5 Contents 2The ToolsNeeded to Create Dialogs61 2.1What’sthe DifferenceBetween Dialogsand Widgets?....... 62 2.1.1Inheriting from QObject ................... 64 2.1.2MoreComplexLayouts .................... 65 2.1.3IncreasingUsability..................... 68 2.1.4ImplementingSlots ..................... 70 2.2SeparationofGUI andProcessing Logic............... 74 2.2.1AlternativeDesign...................... 74 2.2.2Declaring andSending OutSignals ............. 76 2.2.3Using Your OwnSignals ................... 79 3GUI Design Using theQtDesigner81 3.1Dialogs “ByMouseClick” ....................... 81 3.1.1Making Layouts With theDesigner............. 84 3.1.2The PropertyEditor. ..................... 85 3.1.3The Preview.......................... 88 3.1.4Signal/SlotConnections ................... 88 3.1.5The TabSequence...................... 89 3.1.6Shortcuts andBuddies .................... 90 3.2Integrating Designer-generated FilesintoYourQtProject ..... 91 3.2.1Using Designer-generated ClassesasHelperClasses.... 92 3.2.2AlwaysHavingDesigner-generated Widgets Available ... 94 3.2.3MultipleInheritance..................... 95 3.3Automatic Signal/SlotConnections .................. 97 3.4Including Derived Classesinthe Designer .............. 99 3.5The Resource Editor .......................... 99 4Developing aGUI Application BasedonaMain Window 101 4.1The Anatomyof theMainWindow.................. 101 4.2DerivingfromQMainWindow..................... 103 4.3CreatingaMain Windowwiththe Qt Designer........... 106 4.3.1Adding Menu Bars ...................... 107 4.3.2RecyclingActions in theToolbar.............. 108 6 Contents 4.3.3Integrating theMainWindowwithYourSourceCode ... 110 4.4Making theMostofthe Status Bar.................. 118 4.4.1TemporaryMessages..................... 120 4.4.2NormalMessages. ...................... 120 4.4.3Permanent Messages. .................... 121 4.5Toolbars ................................ 125 4.6HowDo ActionsWork? ........................ 126 4.6.1Howto InstantiateQAction Manually............ 127 4.6.2Selectable Actions...................... 128 4.6.3Grouped Actions....................... 128 4.7DockWindows............................. 130 4.7.1Positioning Dock Windows. ................. 131 4.7.2ADock Windowfor OurEditor............... 133 4.8SavingPreferences ........................... 136 4.8.1Extending CuteEdit. ..................... 139 5Laying OutWidgets 141 5.1ManualLayout............................. 141 5.2Automatic Layout........................... 143 5.2.1Horizontaland Vertical Layout............... 144 5.2.2GridLayout.......................... 148 5.2.3Nested Layouts ........................ 149 5.3Splitter ................................. 150 5.3.1BehaviorDuringSizeChanges ................ 150 5.3.2SavingSplitter Positionsand Determining theWidgetSize151 5.3.3Defining RelativeSizes .................... 152 5.3.4CustomizingHandles ..................... 153 5.3.5Layoutfor LanguagesWritten from RighttoLeft..... 156 5.4StackedLayouts ............................ 157 5.4.1The Alternative: Stacked Widgets .............. 157 5.4.2WhentoUse Stacked Layouts andWidgets ......... 157 7 Contents 6Dialogs161 6.1Modal Dialogs............................. 161 6.2Non-modal Dialogs.......................... 163 6.2.1UsabilityProblems ...................... 163 6.3Semi-modal Dialogs.......................... 164 6.4Avoiding Bloated Dialogs....................... 164 6.5Ready-made DialogsinQt...................... 166 6.5.1Message Dialogs....................... 166 6.5.2Error MessagesThatAre OnlyVisible Once ......... 174 6.5.3File SelectionDialogs ..................... 175 6.5.4Input Dialogs......................... 179 6.5.5FontSelection Dialog .................... 182 6.5.6Color Selectionand Printing Dialog ............. 183 7Events, Drag andDrop, andthe
Recommended publications
  • Speedport Smart 3 Open Source Licenses (Lizenztexte) Gnu General Public License
    SPEEDPORT SMART 3 OPEN SOURCE LICENSES (LIZENZTEXTE) GNU GENERAL PUBLIC LICENSE Version 2, June 1991 Copyright (C) 1989, 1991 Free Software Foundation, Inc. 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA Everyone is permitted to copy and distribute verbatim copies of this license document, but changing it is not allowed. Preamble The licenses for most software are designed to take away your freedom to share and change it. By contrast, the GNU General Public License is intended to guarantee your freedom to share and change free software--to make sure the software is free for all its users. This General Public License applies to most of the Free Software Foundation‘s software and to any other program whose authors commit to using it. (Some other Free Software Foundation software is covered by the GNU Lesser General Public License instead.) You can apply it to your programs, too. When we speak of free software, we are referring to freedom, not price. Our General Public Licen- ses are designed to make sure that you have the freedom to distribute copies of free software (and charge for this service if you wish), that you receive source code or can get it if you want it, that you can change the software or use pieces of it in new free programs; and that you know you can do these things. To protect your rights, we need to make restrictions that forbid anyone to deny you these rights or to ask you to surrender the rights. These restrictions translate to certain responsibilities for you if you distribute copies of the software, or if you modify it.
    [Show full text]
  • User Manual 19HFL5014W Contents
    User Manual 19HFL5014W Contents 1 TV Tour 3 13 Help and Support 119 1.1 Professional Mode 3 13.1 Troubleshooting 119 13.2 Online Help 120 2 Setting Up 4 13.3 Support and Repair 120 2.1 Read Safety 4 2.2 TV Stand and Wall Mounting 4 14 Safety and Care 122 2.3 Tips on Placement 4 14.1 Safety 122 2.4 Power Cable 4 14.2 Screen Care 123 2.5 Antenna Cable 4 14.3 Radiation Exposure Statement 123 3 Arm mounting 6 15 Terms of Use 124 3.1 Handle 6 15.1 Terms of Use - TV 124 3.2 Arm mounting 6 16 Copyrights 125 4 Keys on TV 7 16.1 HDMI 125 16.2 Dolby Audio 125 5 Switching On and Off 8 16.3 DTS-HD (italics) 125 5.1 On or Standby 8 16.4 Wi-Fi Alliance 125 16.5 Kensington 125 6 Specifications 9 16.6 Other Trademarks 125 6.1 Environmental 9 6.2 Operating System 9 17 Disclaimer regarding services and/or software offered by third parties 126 6.3 Display Type 9 6.4 Display Input Resolution 9 Index 127 6.5 Connectivity 9 6.6 Dimensions and Weights 10 6.7 Sound 10 7 Connect Devices 11 7.1 Connect Devices 11 7.2 Receiver - Set-Top Box 12 7.3 Blu-ray Disc Player 12 7.4 Headphones 12 7.5 Game Console 13 7.6 USB Flash Drive 13 7.7 Computer 13 8 Videos, Photos and Music 15 8.1 From a USB Connection 15 8.2 Play your Videos 15 8.3 View your Photos 15 8.4 Play your Music 16 9 Games 18 9.1 Play a Game 18 10 Professional Menu App 19 10.1 About the Professional Menu App 19 10.2 Open the Professional Menu App 19 10.3 TV Channels 19 10.4 Games 19 10.5 Professional Settings 20 10.6 Google Account 20 11 Android TV Home Screen 22 11.1 About the Android TV Home Screen 22 11.2 Open the Android TV Home Screen 22 11.3 Android TV Settings 22 11.4 Connect your Android TV 25 11.5 Channels 27 11.6 Channel Installation 27 11.7 Internet 29 11.8 Software 29 12 Open Source Software 31 12.1 Open Source License 31 2 1 TV Tour 1.1 Professional Mode What you can do In Professional Mode ON, you can have access to a large number of expert settings that enable advanced control of the TV’s state or to add additional functions.
    [Show full text]
  • System Profile
    Steve Sample’s Power Mac G5 6/16/08 9:13 AM Hardware: Hardware Overview: Model Name: Power Mac G5 Model Identifier: PowerMac11,2 Processor Name: PowerPC G5 (1.1) Processor Speed: 2.3 GHz Number Of CPUs: 2 L2 Cache (per CPU): 1 MB Memory: 12 GB Bus Speed: 1.15 GHz Boot ROM Version: 5.2.7f1 Serial Number: G86032WBUUZ Network: Built-in Ethernet 1: Type: Ethernet Hardware: Ethernet BSD Device Name: en0 IPv4 Addresses: 192.168.1.3 IPv4: Addresses: 192.168.1.3 Configuration Method: DHCP Interface Name: en0 NetworkSignature: IPv4.Router=192.168.1.1;IPv4.RouterHardwareAddress=00:0f:b5:5b:8d:a4 Router: 192.168.1.1 Subnet Masks: 255.255.255.0 IPv6: Configuration Method: Automatic DNS: Server Addresses: 192.168.1.1 DHCP Server Responses: Domain Name Servers: 192.168.1.1 Lease Duration (seconds): 0 DHCP Message Type: 0x05 Routers: 192.168.1.1 Server Identifier: 192.168.1.1 Subnet Mask: 255.255.255.0 Proxies: Proxy Configuration Method: Manual Exclude Simple Hostnames: 0 FTP Passive Mode: Yes Auto Discovery Enabled: No Ethernet: MAC Address: 00:14:51:67:fa:04 Media Options: Full Duplex, flow-control Media Subtype: 100baseTX Built-in Ethernet 2: Type: Ethernet Hardware: Ethernet BSD Device Name: en1 IPv4 Addresses: 169.254.39.164 IPv4: Addresses: 169.254.39.164 Configuration Method: DHCP Interface Name: en1 Subnet Masks: 255.255.0.0 IPv6: Configuration Method: Automatic AppleTalk: Configuration Method: Node Default Zone: * Interface Name: en1 Network ID: 65460 Node ID: 139 Proxies: Proxy Configuration Method: Manual Exclude Simple Hostnames: 0 FTP Passive Mode:
    [Show full text]
  • The Konqueror Handbook
    The Konqueror Handbook Pamela Roberts Developers: The KDE Team The Konqueror Handbook 2 Contents 1 Overview 6 2 Konqueror Basics7 2.1 Starting Konqueror . .7 2.2 The Parts of Konqueror . .8 2.3 Tooltips and What’s This? . .9 2.4 Left and Middle Mouse Button Actions . .9 2.5 Right Mouse Button Menus . 10 2.6 Viewing Help, Man and Info Pages . 11 3 Konqueror the File Manager 12 3.1 Folders and Paths . 12 3.2 View Modes . 12 3.2.1 File Tip Info . 13 3.2.2 File Previews . 13 3.2.3 Information in the View . 14 3.3 Folder View Properties . 14 3.3.1 The View Properties Dialog . 15 3.4 Navigation . 15 3.4.1 Finding Files and Folders . 16 3.4.2 Removable Devices . 16 3.5 Deleting Files and Folders . 17 3.6 Moving and Copying . 17 3.6.1 Using Drag ’n Drop . 18 3.6.2 Duplicate File or Folder Names . 18 3.7 Selecting Items in the View . 19 3.7.1 Selecting Items Using the Mouse . 19 3.7.2 Selecting Items Using the Keyboard . 19 3.7.3 Selecting Items Using the Menu . 20 3.8 Create New . 20 3.9 Changing Names and Permissions . 21 3.9.1 Copy and Rename . 21 3.10 Configuring File Associations . 22 3.11 At the Command Line . 22 The Konqueror Handbook 4 Konqueror the Web Browser 23 4.1 Connecting to the Internet . 23 4.2 Surfing and Searching . 24 4.3 Tabbed Browsing . 25 4.4 Web Shortcuts .
    [Show full text]
  • Open Source Software License Information
    Open Source Software license information This document contains an open source software license information for the product VACUU·SELECT. The product VACUU·SELECT contains open source components which are licensed under the applicable open source licenses. The applicable open source licenses are listed below. The open source software licenses are granted by the respective right holders directly. The open source licenses prevail all other license information with regard to the respective open source software components contained in the product. Modifications of our programs which are linked to LGPL libraries are permitted for the customer's own use and reverse engineering for debugging such modifications. However, forwarding the information acquired during reverse engineering or debugging to third parties is prohibited. Furthermore, it is prohibited to distribute modified versions of our programs. In any case, the warranty for the product VACUU·SELECT will expire, as long as the customer cannot prove that the defect would also occur without these modification. WARRANTY DISCLAIMER THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE. See the applicable licenses for more details. Written offer This product VACUU·SELECT contains software components that are licensed by the holder of the rights as free software, or Open Source software, under GNU General Public License, Versions 2 and 3, or GNU Lesser General Public License, Versions 2.1, or GNU Library General Public License, Version 2, respectively. The source code for these software components can be obtained from us on a data carrier (e.g.
    [Show full text]
  • Licence Agreement. Supplement
    A Daimler Brand Licence Agreement. Supplement. Services for your Mercedes-Benz and Setra Index 2 Contents Overview 3 MIT – Variants 342 Note 3 OpenSSH License 343 Academic Free License 2.1 4 OpenSSL License 350 Apache License, Version 2.0 8 PCRE5 License 352 Beerware License 12 PHP License Version 3.01 353 Boost Software License 1.0 12 Python License 2.0 355 BSD 2-clause 13 Silicon Graphics License 358 BSD 3-clause 21 The FreeType Project License 359 BSD 4-Clause 30 The OpenLDAP Public License 362 BSD variants 31 The ISC License 362 Bzip2 License 31 Unicode License 363 Coffee-ware License 32 X11 License 365 Copyleft-next License 33 Zlib License 365 Curl License 38 Imprint 367 dhcp License 39 Dropbear License 40 expat License 43 GNU GPL v 1.0 43 GNU GPL v 2.0 49 GNU GPL 3.0 245 GNU LGPL v 2.0 260 GNU LGPL v 2.1 274 GNU LGPL 3.0 301 Info-Zip License 319 Iperf License 321 LibFFI License 322 libpcap License 323 libJPEG license 325 Libpng license 334 LibXML2 License 337 Lua License 338 Message-Digest Algorithm License 338 MIT 339 Licence Agreement 3 Overview This supplement describes all models and all standard and optional equipment of your vehicle available at the time of publication of this license agreement. Country-specific deviations are possible. Please note that not all licenses might be relevant for your vehicle. Should you have any questions concerning equipment and operation, please consult an OMNIplus Service Point. Note Components of the software used in the vehicle may be free and open source software licensed under the terms of license of the GNU General Public License, Version 2 (GPLv2), GNU Lesser General Public License, Version 2.1 (LGPLv2.1) or GNU Library General Public License, Version 2 (LGPLv2).
    [Show full text]
  • Froglogic Slidedeck
    C++ Code Coverage Analysis Qt Developer Days 2012 by Harri Porten About me . Name: Harri Porten . Company: froglogic GmbH, vendor of Squish for Qt and Squish Coco . Position: co-founder and CEO . Worked as Software Engineer at Trolltech and contributor to the KDE project Overview . Theory - What is Code Coverage Analysis? - Why Code Coverage Analysis? - Coverage Levels - Instrumentation Types - Types of Testing - Challenges with Qt - Available Tools - Integrations . Demos - Qt 5 Code Coverage Analysis - Demo with Squish Coco What is Code Coverage Analysis? . A way to measure the quality of software testing . Percentage of code being tested . White box testing (or glass or structural testing) . Most commonly used metric . An indirect indicator of code quality . Not a quality guarantee Why Code Coverage? . Discover yet untested code - Add new tests - Modify existing tests (data-driven) . Discover unreachable code . Focus testing effort Coverage Analysis (Example) Coverage Levels – Source File First, rough overview: File Coverage src/corelib/thread/qmutex.cpp 100% ... ... src/corelib/tools/qstringlist.cpp 98.4% ... ... src/gui/painting/qcolor.cpp 66.1% ... ... src/widgets/widgets/qtoolbar.cpp 44.2% Coverage Levels – Function Drilling down: File Coverage QThread::currentThread() 100% ... ... QtPrivate::QStringList_removeDuplicates() 84.6% ... ... QPrinter::setPageSize() 36.4% ... ... QSqlError::text() 0.0% Coverage Levels – Line/Statement 716 int QtPrivate::QStringList_removeDuplicates(QStringList *that) 717 { 718 int n = that->size(); 719
    [Show full text]
  • Philips-2944665101-55Pus7502 12 Dfu Est.Pdf
    Register your product and get support at 7502 series www.philips.com/welcome Kasutusjuhend 49PUS7502 55PUS7502 65PUS7502 Sisukord 10.1 Teave teleri menüü kohta 39 1 Seadistamine 4 10.2 Teleri menüü avamine 39 1.1 Lugege ohutusjuhiseid 4 1.2 Telerialus ja seinakinnitus 4 11 Allikad 40 1.3 Nõuanded paigutamiseks 4 11.1 Seadmele lülitumine 40 1.4 Toitejuhe 4 11.2 Teleri sisendi suvandid 40 1.5 Antennikaabel 4 11.3 Seadme nimi ja tüüp 40 11.4 Ühenduste uuesti skannimine 40 2 Kaugjuhtimispult 6 2.1 Nuppude ülevaade 6 12 Võrgud 42 2.2 Häälotsing 7 12.1 Võrk 42 2.3 Infrapunaandur 7 12.2 Bluetooth 42 2.4 Patareid 8 2.5 Puhastamine 8 13 Sätted 43 13.1 Pilt 43 3 Sisse- ja väljalülitamine 9 13.2 Heli 46 3.1 Sees või ooterežiimil 9 13.3 Ambilighti seaded 48 3.2 Teleri klahvid 9 13.4 Ökosätted 50 13.5 Üldsätted 50 4 Kanalid 10 13.6 Kella, regiooni- ja keeleseaded 52 4.1 Kanalite paigaldamine 10 13.7 Androidi sätted 53 4.2 Kanalite loendid 10 13.8 Kasutushõlbustuse sätted 53 4.3 Kanalite loendi filtreerimine 10 13.9 Lukustuse sätted 53 4.4 Kanalite vaatamine 11 4.5 Lemmikkanalid 13 14 Videod, fotod ja muusika 55 4.6 Tekst / teletekst 14 14.1 Arvutist või võrgumälust 55 14.2 Lemmikute menüü 55 5 Kanali paigaldamine 16 14.3 Menüü Populaarsed ja Viimati esitatud 55 5.1 Satelliitkanalite paigaldamine 16 14.4 USB-ühenduse kaudu 55 5.2 Antenni/kaabli paigaldamine 19 14.5 Esitage oma videosid 55 5.3 Kanaliloendi koopia 21 14.6 Oma fotode vaatamine 56 5.4 Satelliidiloendi koopia 22 14.7 Esitage oma muusikat 57 6 Seadmete ühendamine 24 15 Telekava 59 6.1 Teave
    [Show full text]
  • The Kfind Handbook
    The KFind Handbook Dirk Doerflinger The KFind Handbook 2 Contents 1 Introduction 5 1.1 Launching KFind . .5 2 Finding Files 6 2.1 The Name/Location Tab . .6 2.2 The Contents Tab . .7 2.3 The Properties Tab . .8 3 Credits and License9 Abstract KFind is a file find utility by KDE. The KFind Handbook Chapter 1 Introduction KFind is a file find utility by KDE. 1.1 Launching KFind The Find Files tool is a useful method of searching for specific files on your computer, or for searching for files that match a pattern. An example of this could include searching for files of a particular type or with certain letters in the filename. You can load this utility in Konqueror (in file manager mode) by selecting Tools ! Find File (Ctrl+F) from the menu. If you want to use KFind as a standalone search tool, launch it by using KRunner. 5 The KFind Handbook Chapter 2 Finding Files 2.1 The Name/Location Tab When starting KFind, you will see a quite simple window. Type in the name of the file you are searching for in the text box labeled Named:. You can use wildcard matching and a semicolon (‘;’) for separating multiple names. Choose a folder where you want to search by typing it in the field Look in: or by clicking Browse... (you can toggle the display of the hidden files and folder in the dialog using the short- cuts Alt+. or F8) and press Enter or click the Find button. Use the Stop button to cancel a search.
    [Show full text]
  • Imagepress Lite C165 Licensing Guide
    Third-Party Services If you use third-party services through the PRODUCT, use of the services are subjected the conditions below. When you access and/or obtain some third party content (such as text, images, videos, audios, or software) through the SOFTWARE, except as expressly permitted by the content owner or by applicable law, you may not (a) scrape, build databases or otherwise create permanent copies of such content, or keep cached copies longer than permitted by the cache header; (b) copy, translate, modify, create a derivative work of, sell, lease, lend, convey, distribute, publicly display or sublicense to any third party; (c) misrepresent the source or ownership; and (d) remove, obscure, or alter any copyright, trademark or other proprietary rights notices, falsify or delete any author attributions, legal notices or other labels of the origin or source of material. - 1 - The Software Subjected to Other License Conditions Please refer to Table of Software and respective License terms below, for more detail and corresponding license conditions. Table of Software Names of Software Terms and Conditions of the License: See Page Adobe PostScript 3 6 Adobe PDF Scan Library 13 HttpClient2.0 Alpha1 Release 16 Bootstrap 18 Crypto API 19 dump/restore 20 expat 21 flipsnap 22 fontconfig 23 freetype2 24 HarfBuzz 2012-07-30 29 iw 30 JAVA SE 31 jQuery 32 jquery.ex-table-filter 34 jquery-json 35 tablesorter 36 jQueryUI 37 JSEncrypt 38 libcurl 41 libdrm 44 libjingle 59 libjpeg 60 libjpeg-turbo 61 libpcap 65 libpng 66 libtiff 69 libxml2 70 libXrandr 71 - 2 - MD4 73 memcached 74 Mesa 75 MSTLIB 81 Net-SNMP 83 OPEN CV 91 OpenSSL 141 OSGi Release 5 146 pango (part of OpenTypeCode) 152 pixman 153 Protocol Buffers 155 servlet.jar 156 SQLite 160 Wi-Fi Test Suite 161 wpa_supplicant-2.6 162 X Window System 164 xkeyboard-config 255 Xrandr 261 - 3 - If you need source code of the following Software, please send your request by email with the following information in English or Japanese at: <[email protected]>.
    [Show full text]
  • Book of Qt 4 : the Art of Building Qt Applications
    The Book of Qt 4 Daniel Molkentin TheBook of Qt 4 TheArt of BuildingQtApplications ® Munich SanFrancisco The Book of Qt 4: The ArtofBuildingQtApplications. Copyright " c 2007OpenSource PressGmbH Allrightsreserved.Nopartofthisworkmaybe reproducedortransmittedinanyform or byanymeans, electronic or mechanical, includingphotocopying, recording, or byanyinformationstorageorretrieval system,without theprior writtenpermission of thecopyright ownerand thepublisher. Printedonrecycled paperinthe United States of America. 12345678910—10090807 No Starch Pressand theNoStarch Presslogo areregisteredtrademarksofNoStarch Press, Inc. Otherproduct and companynamesmentioned herein maybe thetrademarksoftheir respectiveowners.Ratherthanuse atrademark symbol witheveryoccurrence of atrademarked name,weare usingthe namesonlyin an editorialfashionand to the benefit of thetrademark owner, withnointention of infringement of thetrademark. Publisher: William Pollock Cover Design:Octopod Studios U.S. editionpublishedbyNo Starch Press, Inc. 555 De HaroStreet,Suite 250,San Francisco, CA 94107 phone: 415.863.9900;fax:415.863.9950;[email protected];http://www.nostarch.com Original edition " c 2006OpenSource PressGmbH PublishedbyOpenSource PressGmbH, Munich, Germany Publisher: Dr.Markus Wirtz Original ISBN 978-3-937514-12-3 For informationontranslations, pleasecontact OpenSource PressGmbH, Amalienstr.45Rg, 80799 M unche¨ n, Germany phone+49.89.28755562; fax+49.89.28755563; [email protected];http://www.opensourcepress.de Theinformationinthisbook is distributed on an
    [Show full text]
  • Manuale Dell'utente 19HFL5014W Contenuti
    Manuale dell'utente 19HFL5014W Contenuti 12.1 Licenza open source 31 1 Panoramica TV 3 1.1 Professional mode 3 13 Guida e supporto 119 13.1 Risoluzione dei problemi 119 2 Configurazione 4 13.2 Guida online 120 2.1 Istruzioni di sicurezza 4 13.3 Assistenza e riparazione 121 2.2 Supporto TV e montaggio a parete 4 2.3 Suggerimenti sul posizionamento 4 14 Sicurezza e protezione 122 2.4 Cavo di alimentazione 4 14.1 Sicurezza 122 2.5 Cavo dell'antenna 4 14.2 Protezione dello schermo 123 14.3 Dichiarazione di esposizione alle radiazioni 3 Montaggio su supporto 6 123 3.1 Impugnatura 6 15 Termini di utilizzo 124 3.2 Montaggio su supporto 6 15.1 Termini di utilizzo - Televisore 124 4 Tasti sul TV 7 16 Copyright 125 5 Accensione e spegnimento 8 16.1 HDMI 125 5.1 Accensione o standby 8 16.2 Dolby Audio 125 16.3 DTS-HD (italics) 125 6 Specifiche 9 16.4 Wi-Fi Alliance 125 6.1 Informazioni ambientali 9 16.5 Kensington 125 6.2 Sistema operativo 9 16.6 Altri marchi 125 6.3 Tipo di schermo 9 17 Declinazione di responsabilità in relazione 6.4 Risoluzione video in ingresso 9 a servizi e/o software offerti da terzi 126 6.5 Connettività 9 6.6 Dimensioni e peso 10 Indice 127 6.7 Suono 10 7 Connetti dispositivi 11 7.1 Connetti dispositivi 11 7.2 Ricevitore - Decoder 12 7.3 Lettore dischi Blu-ray 12 7.4 Cuffie 12 7.5 Console di gioco 13 7.6 Unità flash USB 13 7.7 Computer 13 8 Video, foto e musica 15 8.1 Da un collegamento USB 15 8.2 Riproduzione dei video personali 15 8.3 Visualizzazione delle foto personali 15 8.4 Riproduzione dei brani musicali personali 16
    [Show full text]