|
|
|
|
LEADER |
00000cam a2200000 i 4500 |
001 |
EBOOKCENTRAL_ocn935256988 |
003 |
OCoLC |
005 |
20240329122006.0 |
006 |
m o d |
007 |
cr unu|||||||| |
008 |
160119s2015 enka o 001 0 eng d |
040 |
|
|
|a UMI
|b eng
|e rda
|e pn
|c UMI
|d OCLCF
|d N$T
|d IDEBK
|d VT2
|d YDXCP
|d COO
|d EBLCP
|d DEBSZ
|d DEBBG
|d OCLCQ
|d MERUC
|d OCLCQ
|d CEF
|d NLE
|d UKMGB
|d OCLCQ
|d UAB
|d UKAHL
|d OCLCQ
|d OCLCO
|d K6U
|d OCLCQ
|d OCLCO
|d OCLCL
|
016 |
7 |
|
|a 018010555
|2 Uk
|
019 |
|
|
|a 933584523
|a 933587272
|a 951065029
|a 1259104847
|
020 |
|
|
|a 9781785288791
|q (electronic bk.)
|
020 |
|
|
|a 1785288792
|q (electronic bk.)
|
020 |
|
|
|a 1785287737
|
020 |
|
|
|a 9781785287732
|
020 |
|
|
|z 9781785287732
|
024 |
3 |
|
|a 9781785287732
|
029 |
1 |
|
|a AU@
|b 000057034088
|
029 |
1 |
|
|a AU@
|b 000066233831
|
029 |
1 |
|
|a CHNEW
|b 000960589
|
029 |
1 |
|
|a CHVBK
|b 491696426
|
029 |
1 |
|
|a DEBBG
|b BV043968657
|
029 |
1 |
|
|a DEBSZ
|b 473885107
|
029 |
1 |
|
|a DEBSZ
|b 485791641
|
029 |
1 |
|
|a GBVCP
|b 882751263
|
029 |
1 |
|
|a UKMGB
|b 018010555
|
035 |
|
|
|a (OCoLC)935256988
|z (OCoLC)933584523
|z (OCoLC)933587272
|z (OCoLC)951065029
|z (OCoLC)1259104847
|
037 |
|
|
|a CL0500000703
|b Safari Books Online
|
050 |
|
4 |
|a QA76.76.P98
|
072 |
|
7 |
|a COM
|x 051360
|2 bisacsh
|
082 |
0 |
4 |
|a 005.10685
|2 23
|
049 |
|
|
|a UAMI
|
100 |
1 |
|
|a Precord, Cody,
|e author.
|
245 |
1 |
0 |
|a WxPython application development cookbook :
|b over 80 step-by-step recipes to get you up to speed with building your own wxPython applications /
|c Cody Precord.
|
264 |
|
1 |
|a Birmingham :
|b Packt Publishing,
|c 2015.
|
300 |
|
|
|a 1 online resource :
|b illustrations
|
336 |
|
|
|a text
|b txt
|2 rdacontent
|
337 |
|
|
|a computer
|b c
|2 rdamedia
|
338 |
|
|
|a online resource
|b cr
|2 rdacarrier
|
490 |
1 |
|
|a Quick answers to common problems
|
588 |
0 |
|
|a Online resource; title from PDF title page (EBSCO, viewed May 3, 2016).
|
500 |
|
|
|a Includes index.
|
520 |
8 |
|
|a Annotation
|b Over 80 step-by-step recipes to get you up to speed with building your own wxPython applicationsAbout This Book This book empowers you to create rich cross-platform graphical user interfaces using Python It helps you develop applications that can be deployed on Windows, OSX, and Linux The recipes in the book involve real-world applications, giving you a first-hand experience of the practical scenariosWho This Book Is ForFor those who are familiar with programming in Python and want to start building applications with graphical user interfaces, this book will get you up and running quickly. A basic understanding of the Python programming language and object-oriented concepts are all that is needed. What You Will Learn Create full featured user interfaces Design and develop custom controls Deploy and distribute wxPython applications to Windows, Macintosh OS X, Linux, and other UNIX-like environments Handle and respond to application events Manage and display data using grids Interact with web services from your GUI Use Paint events to draw custom displays Support the display of user interfaces in multiple languagesIn DetailwxPython is a GUI toolkit for the Python programming language built on top of the cross-platform wxWidgets GUI libraries. wxPython provides a powerful set of tools that allow you to quickly and efficiently building applications that can run on a variety of different platforms. Since wxWidgets provides a wrapper around each platform's native GUI toolkit, the applications built with wxPython will have a native look and feel wherever they are deployed. This book will provide you with the skills to build highly functional and native looking user interfaces for Python applications on multiple operating system environments. By working through the recipes, you will gain insights into and exposure to creating applications using wxPython. With a wide range of topics covered in the book, there are recipes to get the most basic of beginners started in GUI programming as well as tips to help experienced users get more out of their applications. The recipes will take you from the most basic application constructs all the way through to the deployment of complete applications. Style and approach This book is a collection of step-by-step recipes that introduce the various components and concepts of wxPython in a conversational and easy-to-follow way. Each recipe contains coded examples along with detailed explanations about the key points of each topic. Each topic is designed to introduce and show you how to use a single feature from the wxPython library.
|
505 |
0 |
|
|a Cover; Copyright; Credits; About the Author; About the Reviewers; www.PacktPub.com; Table of Contents; Preface; Chapter 1: wxPython Starting Points; Introduction; Creating an application object; Adding the main frame; Using bitmaps; Binding to events; Understanding the hierarchy of the UI; Controlling the propagation of events; Accessing the clipboard; Supporting drag and drop; Handling AppleEvents; Chapter 2: Common User Controls; Introduction; Starting with the easy button; Pushing all the buttons; Offering options with CheckBoxes; Using TextCtrl; Processing key events.
|
505 |
8 |
|
|a Picking dates with DatePickerCtrlExploring menus and shortcuts; Displaying a context menu; Working with ToolBars; Managing UI states; Chapter 3: UI Layout and Organization; Introduction; Laying out controls with Sizers; Controlling layout behavior; Grouping controls with a StaticBox control; Creating an automatic wrapping layout; Using the standard dialog button sizer; Simplifying the panel layout; Making dialog layout easy; Building XML resource-based layouts; Extending XRC for custom controls; Advancing your UI with AuiManager; Chapter 4: Containers and Advanced Controls; Introduction.
|
505 |
8 |
|
|a Adding tabs with the Notebook controlEnhancing ComboBox with bitmaps; Configuring properties; Taking control with FlatNotebook; Styling text in StyledTextCtrl; Annotating StyledTextCtrl; Displaying hierarchical data with TreeCtrl; Building a system tray application; Surfing the Web in your app; Chapter 5: Data Displays and Grids; Introduction; Displaying lists of data; Editing data lists; Implementing a data source; Getting started with the data grid; Displaying dynamic data; Modeling your data; Displaying your data model; Chapter 6: Ways to Notify and Alert; Introduction; Showing MessageBox.
|
505 |
8 |
|
|a Using InfoBarProviding extra tips on usage; Displaying transient notifications; Making a splash at startup; Giving busy feedback; Showing information about your app; Chapter 7: Requesting and Retrieving Information; Introduction; Selecting files with FileDialog; Searching text with FindReplaceDialog; Filtering through choices; Retrieving multiple selections; Using Print dialogs; Guiding selections with Wizard; Chapter 8: User Interface Primitives; Introduction; Painting in your UI; Drawing basic shapes; Customizing grid labels; Drawing gradients with GraphicsContext.
|
505 |
8 |
|
|a Recreating native controls with RendererNativeChapter 9: Creating and Customizing Components; Introduction; Making your own dialog; Validating user input; Interacting with StatusBar; Providing your own information window; Creating a managed layout; Drawing your own list control; Implementing highlighting in StyledTextCtrl; Creating a composite control; Designing an owner-drawn control; Chapter 10: Getting Your Application Ready for Release; Introduction; Storing your configuration with StandardPaths; Saving the application's state; Supporting internationalization; Optimizing for OS X.
|
590 |
|
|
|a ProQuest Ebook Central
|b Ebook Central Academic Complete
|
590 |
|
|
|a eBooks on EBSCOhost
|b EBSCO eBook Subscription Academic Collection - Worldwide
|
650 |
|
0 |
|a Python (Computer program language)
|
650 |
|
6 |
|a Python (Langage de programmation)
|
650 |
|
7 |
|a COMPUTERS
|x Programming Languages
|x Python.
|2 bisacsh
|
650 |
|
7 |
|a Python (Computer program language)
|2 fast
|
758 |
|
|
|i has work:
|a WxPython Application Development Cookbook (Text)
|1 https://id.oclc.org/worldcat/entity/E39PD3mmbXbMtDcRDmTj6mMvkC
|4 https://id.oclc.org/worldcat/ontology/hasWork
|
776 |
0 |
8 |
|i Print version:
|a Precord, Cody.
|t WxPython Application Development Cookbook.
|d Birmingham : Packt Publishing, ©1900
|
830 |
|
0 |
|a Quick answers to common problems.
|
856 |
4 |
0 |
|u https://ebookcentral.uam.elogim.com/lib/uam-ebooks/detail.action?docID=4191339
|z Texto completo
|
938 |
|
|
|a Askews and Holts Library Services
|b ASKH
|n AH29879278
|
938 |
|
|
|a EBL - Ebook Library
|b EBLB
|n EBL4191339
|
938 |
|
|
|a EBSCOhost
|b EBSC
|n 1133615
|
938 |
|
|
|a ProQuest MyiLibrary Digital eBook Collection
|b IDEB
|n cis33455122
|
938 |
|
|
|a YBP Library Services
|b YANK
|n 12768941
|
994 |
|
|
|a 92
|b IZTAP
|