github
Advanced Search
  • Home
  • Pricing and Signup
  • Explore GitHub
  • Blog
  • Login

shoes / shoes

  • Admin
  • Watch Unwatch
  • Fork
  • Your Fork
  • Pull Request
  • Download Source
    • 159
    • 15
  • Source
  • Commits
  • Network (15)
  • Issues (20)
  • Downloads (8)
  • Wiki (25)
  • Graphs
  • Branch: master

click here to add a description

click here to add a homepage

  • Branches (4)
    • always-on-top
    • java2d
    • keyup-keydown
    • master ✓
  • Tags (0)
Sending Request…
Enable Donations

Pledgie Donations

Once activated, we'll place the following badge in your repository's detail box:
Pledgie_example
This service is courtesy of Pledgie.

a tiny graphical app kit for ruby — Read more

  cancel

http://groups.google.com/group/shoooes

  cancel
  • Private
  • Read-Only
  • HTTP Read-Only

This URL has Read+Write access

Revert "Revert "Added ruby_sysinit() into shoes_ruby_embed() for using 
Ruby 1.9.1."" 
mental (author)
Mon Jan 04 09:25:31 -0800 2010
commit  7c9236ee4dd2ade08a9d0cd8818b8ff073857504
tree    a2be01176871b185b370c025f00c72953e3bca54
parent  4a5e887b8f8947471231aaaccdbefabe92b56eb4
shoes /
name age
history
message
file .gitignore Tue Apr 15 11:24:46 -0700 2008 * .gitignore: leave object files, generate fil... [_why]
file CHANGELOG Tue Dec 09 07:57:24 -0800 2008 * CHANGELOG: add raisins feature list. [_why]
file COPYING Thu Dec 04 13:27:39 -0800 2008 * lib/shoes.rb: new splash window, opening wit... [_why]
file README Fri Aug 28 21:26:59 -0700 2009 fix link to build instructions at the wiki [Seth Thomas Rasmussen]
file Rakefile Tue Sep 22 19:29:26 -0700 2009 Modified a little bit for Windows: Changed comp... [ashbb]
file app.yaml Sun Feb 22 21:48:53 -0800 2009 * Rakefile: customizing the windows build and ... [_why]
directory bin/ Thu Jan 22 23:18:36 -0800 2009 * shoes: first attempt to bring shoes up to ru... [_why]
directory bugs/ Tue Feb 10 10:59:13 -0800 2009 * bugs: two bugs found by kyle king. [_why]
directory fonts/ Thu Dec 04 13:27:39 -0800 2008 * lib/shoes.rb: new splash window, opening wit... [_why]
directory lib/ Tue Nov 17 22:28:35 -0800 2009 add primitive packaging UI [mental]
directory platform/ Tue Dec 15 11:06:24 -0800 2009 fixed launcher for recursively linked paths [Michael Klaus]
directory req/ Tue Nov 10 20:26:06 -0800 2009 first crack at keyup/keydown [mental]
directory samples/ Tue May 12 23:03:20 -0700 2009 * samples/simple-calc.rb: update to ruby 1.9, ... [_why]
directory shoes/ Mon Jan 04 09:25:31 -0800 2010 Revert "Revert "Added ruby_sysinit() into shoes... [mental]
directory static/ Sun Dec 20 06:38:10 -0800 2009 * static/manual-ja.txt: A translation of manua... [tnobuhito]
file use-deps Mon Nov 26 10:14:57 -0800 2007 * use-deps: let's try using DYLD_LIBRARY_PATH h... [_why]
README
                      
    ((( |||_| ///\ [[[_ (((
     ))) || |  \\/  [[_  )))
    an artsy any-platform app kit <http://github.com/shoes/shoes>

//////////////////////////////////////////////////////////////////////////

    Hi, guys, thankyou for taking Shoes.

    Shoes is for writing plain old windowing software.  But it borrows a
    few things I like from the web:

    * Hyperlinks and URLs within Shoes and to the web.
    * Simple text layout -- though Shoes eschews floats.
    * Images and colors in the layout and in the background.
    * Margin and padding.
    * Resizable layouts.

    However, layouts can be tough on the web.  Like a two-column layout.
    So rather than using floating divs, Shoes uses two layout types:
    stacks and flows.  More on that later.

    Shoes does keep a few things from traditional windowing toolkits:

    * Buttons.
    * Text edit (single-line and multi-line).
    * Progress bars.
    * Scroll bars.
    * Dialogs.

    And, last of all, Shoes gets some inspiration from NodeBox and
    Processing:

    * The whole window is a canvas.
    * Shapes, paths, curves and transformations.
    * Animation.
    * Easy event-handling for mouse and keyboard.

    Lastly, Shoes uses Ruby as its interface language.

    That's really about all that's in Shoes.  It's supposed to be light.
    Not much code and not too much ambition.

//////////////////////////////////////////////////////////////////////////

    WHY NOT WXWINDOWS?  WHY NOT THE FOX TOOLKIT?  OR QT??

    Shoes is strictly inspired by stuff like REBOL/View, HyperCard,
    the web itself and, of course, Processing and NodeBox.

    I don't like the bulkiness and the layers and layers of wxWindows,
    FOX, QT, GNOME.  They are big, big libraries and all the apps look
    identical, devoid of spirit.

    The unique thing about the web is that it gives you very few
    controls, but people are able to build wildly different pages
    with it that are still immediately accessible to people.

//////////////////////////////////////////////////////////////////////////

    THE INSIDE OF SHOES

    So, to save a bit of work, Shoes relies on a few libraries:
 
    * Cairo, for drawing. (http://cairographics.org)
    * Pango, for text.
    * Ruby, for programming.

    All native widgets use the OS APIs directly.  Half of Shoes is platform
    specific code.  The targets are: OSX, Windows and GTK.

//////////////////////////////////////////////////////////////////////////

    STAYING CURRENT WITH SHOES

    Shoes development happens at Github.  You can download a current
    tarball of the very latest Shoes from here:

      http://github.com/shoes/shoes

    Or, if you have git installed, you can clone the repo like so:

      git clone git://github.com/shoes/shoes.git

    Once you have your compiler and dependencies set up, building Shoes
    is as simple as:

      rake

    Your Shoes build will then appear in the `dist` directory.

    For instructions on how to set up your compiler and acquire deps for
    Windows, OS X, and Linux, see the Shoes wiki:
    <http://wiki.github.com/shoes/shoes/BuildingShoes>

//////////////////////////////////////////////////////////////////////////

    LICENSE

    Copyright (c) 2008 why the lucky stiff
    
    Permission is hereby granted, free of charge, to any person obtaining a copy
    of this software and associated documentation files (the "Software"), to
    deal in the Software without restriction, including without limitation the
    rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
    sell copies of the Software, and to permit persons to whom the Software is
    furnished to do so, subject to the following conditions:
      
    The above copyright notice and this permission notice shall be included in
    all copies or substantial portions of the Software.
       
    THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
    IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
    FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
    THE AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER 
    IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
    CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
Blog | Support | Training | Contact | API | Status | Twitter | Help | Security
© 2010 GitHub Inc. All rights reserved. | Terms of Service | Privacy Policy
Powered by the Dedicated Servers and
Cloud Computing of Rackspace Hosting®
Dedicated Server