Non puoi selezionare più di 25 argomenti Gli argomenti devono iniziare con una lettera o un numero, possono includere trattini ('-') e possono essere lunghi fino a 35 caratteri.
tdegames/kpat
Michele Calgaro d45d96cd06
Fix FTBFS caused by invalid cast. This resolves issue #38.
1 settimana fa
..
freecell-solver Fix FTBFS caused by invalid cast. This resolves issue #38. 1 settimana fa
icons Fix invalid headers in PNG files and optimize for size 8 anni fa
AUTHORS Copy the KDE 3.5 branch to branches/trinity for new KDE 3.5 features. 15 anni fa
CHANGES Rename KCModule, KConfig, KIO, KServer, and KSocket to avoid conflicts with KDE4 11 anni fa
CMakeL10n.txt Desktop file translations: 4 anni fa
CMakeLists.txt Desktop file translations: 4 anni fa
Makefile.am LIB_QT -> LIB_TQT conversion to align to updated admin module 6 anni fa
README Copy the KDE 3.5 branch to branches/trinity for new KDE 3.5 features. 15 anni fa
README.tkcTrump Copy the KDE 3.5 branch to branches/trinity for new KDE 3.5 features. 15 anni fa
TODO Copy the KDE 3.5 branch to branches/trinity for new KDE 3.5 features. 15 anni fa
card.cpp Remove additional unneeded tq method conversions 13 anni fa
card.h Replace Q_OBJECT with TQ_OBJECT 9 mesi fa
cardmaps.cpp Removed additional code formatting modelines. 4 anni fa
cardmaps.h Removed additional code formatting modelines. 4 anni fa
clock.cpp Rename additional header files to avoid conflicts with KDE4 11 anni fa
clock.h Replace Q_OBJECT with TQ_OBJECT 9 mesi fa
computation.cpp Removed additional code formatting modelines. 4 anni fa
computation.h Replace Q_OBJECT with TQ_OBJECT 9 mesi fa
copyright.h Copy the KDE 3.5 branch to branches/trinity for new KDE 3.5 features. 15 anni fa
dealer.cpp Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines 3 mesi fa
dealer.h Replace Q_OBJECT with TQ_OBJECT 9 mesi fa
deck.cpp Update various qt function definitions and static methods for tqt3 12 anni fa
deck.h rename the following methods: 13 anni fa
fortyeight.cpp Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines 3 mesi fa
fortyeight.h Replace Q_OBJECT with TQ_OBJECT 9 mesi fa
freecell.cpp Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines 3 mesi fa
freecell.h Replace Q_OBJECT with TQ_OBJECT 9 mesi fa
gamestats.ui Replace Q_SIGNALS and Q_SLOTS 3 mesi fa
gamestatsimpl.cpp Rename additional header files to avoid conflicts with KDE4 11 anni fa
gamestatsimpl.h Trinity Qt initial conversion 14 anni fa
golf.cpp Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines 3 mesi fa
golf.h Replace Q_OBJECT with TQ_OBJECT 9 mesi fa
grandf.cpp Removed additional code formatting modelines. 4 anni fa
grandf.h Replace Q_OBJECT with TQ_OBJECT 9 mesi fa
green.png Fix invalid headers in PNG files and optimize for size 8 anni fa
gypsy.cpp Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines 3 mesi fa
gypsy.h Replace Q_OBJECT with TQ_OBJECT 9 mesi fa
hint.h Trinity Qt initial conversion 14 anni fa
idiot.cpp Rename additional header files to avoid conflicts with KDE4 11 anni fa
idiot.h Replace Q_OBJECT with TQ_OBJECT 9 mesi fa
kings.cpp Rename additional header files to avoid conflicts with KDE4 11 anni fa
kings.h Replace Q_OBJECT with TQ_OBJECT 9 mesi fa
klondike.cpp Removed additional code formatting modelines. 4 anni fa
klondike.h Replace Q_OBJECT with TQ_OBJECT 9 mesi fa
kpat.desktop Desktop file translations: 4 anni fa
kpatui.rc Copy the KDE 3.5 branch to branches/trinity for new KDE 3.5 features. 15 anni fa
main.cpp Rename common header files for consistency with class renaming 11 anni fa
mod3.cpp Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines 3 mesi fa
mod3.h Replace Q_OBJECT with TQ_OBJECT 9 mesi fa
napoleon.cpp Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines 3 mesi fa
napoleon.h Replace Q_OBJECT with TQ_OBJECT 9 mesi fa
pile.cpp Rename old tq methods that no longer need a unique name 13 anni fa
pile.h Replace Q_OBJECT with TQ_OBJECT 9 mesi fa
pile_algorithms.cpp Copy the KDE 3.5 branch to branches/trinity for new KDE 3.5 features. 15 anni fa
pwidget.cpp Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines 3 mesi fa
pwidget.h Replace Q_OBJECT with TQ_OBJECT 9 mesi fa
simon.cpp Rename additional header files to avoid conflicts with KDE4 11 anni fa
simon.h Replace Q_OBJECT with TQ_OBJECT 9 mesi fa
speeds.h Copy the KDE 3.5 branch to branches/trinity for new KDE 3.5 features. 15 anni fa
spider.cpp Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines 3 mesi fa
spider.h Replace Q_OBJECT with TQ_OBJECT 9 mesi fa
version.h Copy the KDE 3.5 branch to branches/trinity for new KDE 3.5 features. 15 anni fa
yukon.cpp Rename additional header files to avoid conflicts with KDE4 11 anni fa
yukon.h Replace Q_OBJECT with TQ_OBJECT 9 mesi fa

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.