You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
tdegames/kpat
tpearson 42ca287b53
TQt conversion fixes
14 years ago
..
freecell-solver Copy the KDE 3.5 branch to branches/trinity for new KDE 3.5 features. 15 years ago
icons Copy the KDE 3.5 branch to branches/trinity for new KDE 3.5 features. 15 years ago
AUTHORS Copy the KDE 3.5 branch to branches/trinity for new KDE 3.5 features. 15 years ago
CHANGES Copy the KDE 3.5 branch to branches/trinity for new KDE 3.5 features. 15 years ago
Makefile.am Copy the KDE 3.5 branch to branches/trinity for new KDE 3.5 features. 15 years ago
README Copy the KDE 3.5 branch to branches/trinity for new KDE 3.5 features. 15 years ago
README.tkcTrump Copy the KDE 3.5 branch to branches/trinity for new KDE 3.5 features. 15 years ago
TODO Copy the KDE 3.5 branch to branches/trinity for new KDE 3.5 features. 15 years ago
card.cpp Trinity Qt initial conversion 14 years ago
card.h Trinity Qt initial conversion 14 years ago
cardmaps.cpp Trinity Qt initial conversion 14 years ago
cardmaps.h Trinity Qt initial conversion 14 years ago
clock.cpp Copy the KDE 3.5 branch to branches/trinity for new KDE 3.5 features. 15 years ago
clock.h Copy the KDE 3.5 branch to branches/trinity for new KDE 3.5 features. 15 years ago
computation.cpp Copy the KDE 3.5 branch to branches/trinity for new KDE 3.5 features. 15 years ago
computation.h Copy the KDE 3.5 branch to branches/trinity for new KDE 3.5 features. 15 years ago
copyright.h Copy the KDE 3.5 branch to branches/trinity for new KDE 3.5 features. 15 years ago
dealer.cpp Trinity Qt initial conversion 14 years ago
dealer.h TQt conversion fixes 14 years ago
deck.cpp Copy the KDE 3.5 branch to branches/trinity for new KDE 3.5 features. 15 years ago
deck.h Copy the KDE 3.5 branch to branches/trinity for new KDE 3.5 features. 15 years ago
fortyeight.cpp Trinity Qt initial conversion 14 years ago
fortyeight.h Trinity Qt initial conversion 14 years ago
freecell.cpp Trinity Qt initial conversion 14 years ago
freecell.h Trinity Qt initial conversion 14 years ago
gamestats.ui Copy the KDE 3.5 branch to branches/trinity for new KDE 3.5 features. 15 years ago
gamestatsimpl.cpp Trinity Qt initial conversion 14 years ago
gamestatsimpl.h Trinity Qt initial conversion 14 years ago
golf.cpp Trinity Qt initial conversion 14 years ago
golf.h Trinity Qt initial conversion 14 years ago
grandf.cpp Trinity Qt initial conversion 14 years ago
grandf.h Trinity Qt initial conversion 14 years ago
green.png Copy the KDE 3.5 branch to branches/trinity for new KDE 3.5 features. 15 years ago
gypsy.cpp Trinity Qt initial conversion 14 years ago
gypsy.h Copy the KDE 3.5 branch to branches/trinity for new KDE 3.5 features. 15 years ago
hint.h Trinity Qt initial conversion 14 years ago
idiot.cpp Copy the KDE 3.5 branch to branches/trinity for new KDE 3.5 features. 15 years ago
idiot.h Copy the KDE 3.5 branch to branches/trinity for new KDE 3.5 features. 15 years ago
kings.cpp Copy the KDE 3.5 branch to branches/trinity for new KDE 3.5 features. 15 years ago
kings.h Copy the KDE 3.5 branch to branches/trinity for new KDE 3.5 features. 15 years ago
klondike.cpp Trinity Qt initial conversion 14 years ago
klondike.h Copy the KDE 3.5 branch to branches/trinity for new KDE 3.5 features. 15 years ago
kpat.desktop Copy the KDE 3.5 branch to branches/trinity for new KDE 3.5 features. 15 years ago
kpatui.rc Copy the KDE 3.5 branch to branches/trinity for new KDE 3.5 features. 15 years ago
main.cpp Copy the KDE 3.5 branch to branches/trinity for new KDE 3.5 features. 15 years ago
mod3.cpp Trinity Qt initial conversion 14 years ago
mod3.h Copy the KDE 3.5 branch to branches/trinity for new KDE 3.5 features. 15 years ago
napoleon.cpp Trinity Qt initial conversion 14 years ago
napoleon.h Copy the KDE 3.5 branch to branches/trinity for new KDE 3.5 features. 15 years ago
pile.cpp Trinity Qt initial conversion 14 years ago
pile.h Trinity Qt initial conversion 14 years ago
pile_algorithms.cpp Copy the KDE 3.5 branch to branches/trinity for new KDE 3.5 features. 15 years ago
pwidget.cpp Trinity Qt initial conversion 14 years ago
pwidget.h TQt conversion fixes 14 years ago
simon.cpp Copy the KDE 3.5 branch to branches/trinity for new KDE 3.5 features. 15 years ago
simon.h Copy the KDE 3.5 branch to branches/trinity for new KDE 3.5 features. 15 years ago
speeds.h Copy the KDE 3.5 branch to branches/trinity for new KDE 3.5 features. 15 years ago
spider.cpp Trinity Qt initial conversion 14 years ago
spider.h Trinity Qt initial conversion 14 years ago
version.h Copy the KDE 3.5 branch to branches/trinity for new KDE 3.5 features. 15 years ago
yukon.cpp Copy the KDE 3.5 branch to branches/trinity for new KDE 3.5 features. 15 years ago
yukon.h Copy the KDE 3.5 branch to branches/trinity for new KDE 3.5 features. 15 years ago

README

Hello,

this is the very first release of kpat, the KDE solitaire patience game.

It is an almost unchanged "patience" from Paul Olav Tvete, who uploaded
this stuff some months ago on www.troll.no.

My changes are so far:

    - renamed the stuff kpat-0.1
    - improved drag'n'drop (no more weird jumping of cards)
    - improved look (shaded borders around the cards and piles)
    - hopefully improved cards-background 
    - "very easy"-option for klondike to give only one card. 
    - unset wholeColumn for klondike, but this all belongs into OPTIONS

Anway, kpat is IMO already yet the best X-based solitaire-like game,
thanks to Paul Olav Tvete and Qt :-)


Greets,

  Matthias



----- original README (probably Paul):

This is an implementation of patience (solitaire). It consists of a
general class library and six games implemented using it.

I wrote this program when learning Qt. There are a number of things I
would have done differently now. One of the silliest is that all the
intelligence lies in the cards (which are individual widgets, by the way)
instead of in a Patience class.

There are a lot of static variables. Don't try to instantiate more than one
dealer at a time -- that way lies madness.

The general base classes could doubtlessly have been a lot more general.