選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。
tdegames/kpat
Michele Calgaro d45d96cd06
Fix FTBFS caused by invalid cast. This resolves issue #38.
2週間前
..
freecell-solver Fix FTBFS caused by invalid cast. This resolves issue #38. 2週間前
icons Fix invalid headers in PNG files and optimize for size 8年前
AUTHORS Copy the KDE 3.5 branch to branches/trinity for new KDE 3.5 features. 15年前
CHANGES Rename KCModule, KConfig, KIO, KServer, and KSocket to avoid conflicts with KDE4 11年前
CMakeL10n.txt Desktop file translations: 4年前
CMakeLists.txt Desktop file translations: 4年前
Makefile.am LIB_QT -> LIB_TQT conversion to align to updated admin module 6年前
README Copy the KDE 3.5 branch to branches/trinity for new KDE 3.5 features. 15年前
README.tkcTrump Copy the KDE 3.5 branch to branches/trinity for new KDE 3.5 features. 15年前
TODO Copy the KDE 3.5 branch to branches/trinity for new KDE 3.5 features. 15年前
card.cpp Remove additional unneeded tq method conversions 13年前
card.h Replace Q_OBJECT with TQ_OBJECT 9ヶ月前
cardmaps.cpp Removed additional code formatting modelines. 4年前
cardmaps.h Removed additional code formatting modelines. 4年前
clock.cpp Rename additional header files to avoid conflicts with KDE4 11年前
clock.h Replace Q_OBJECT with TQ_OBJECT 9ヶ月前
computation.cpp Removed additional code formatting modelines. 4年前
computation.h Replace Q_OBJECT with TQ_OBJECT 9ヶ月前
copyright.h Copy the KDE 3.5 branch to branches/trinity for new KDE 3.5 features. 15年前
dealer.cpp Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines 3ヶ月前
dealer.h Replace Q_OBJECT with TQ_OBJECT 9ヶ月前
deck.cpp Update various qt function definitions and static methods for tqt3 12年前
deck.h rename the following methods: 13年前
fortyeight.cpp Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines 3ヶ月前
fortyeight.h Replace Q_OBJECT with TQ_OBJECT 9ヶ月前
freecell.cpp Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines 3ヶ月前
freecell.h Replace Q_OBJECT with TQ_OBJECT 9ヶ月前
gamestats.ui Replace Q_SIGNALS and Q_SLOTS 3ヶ月前
gamestatsimpl.cpp Rename additional header files to avoid conflicts with KDE4 11年前
gamestatsimpl.h Trinity Qt initial conversion 14年前
golf.cpp Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines 3ヶ月前
golf.h Replace Q_OBJECT with TQ_OBJECT 9ヶ月前
grandf.cpp Removed additional code formatting modelines. 4年前
grandf.h Replace Q_OBJECT with TQ_OBJECT 9ヶ月前
green.png Fix invalid headers in PNG files and optimize for size 8年前
gypsy.cpp Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines 3ヶ月前
gypsy.h Replace Q_OBJECT with TQ_OBJECT 9ヶ月前
hint.h Trinity Qt initial conversion 14年前
idiot.cpp Rename additional header files to avoid conflicts with KDE4 11年前
idiot.h Replace Q_OBJECT with TQ_OBJECT 9ヶ月前
kings.cpp Rename additional header files to avoid conflicts with KDE4 11年前
kings.h Replace Q_OBJECT with TQ_OBJECT 9ヶ月前
klondike.cpp Removed additional code formatting modelines. 4年前
klondike.h Replace Q_OBJECT with TQ_OBJECT 9ヶ月前
kpat.desktop Desktop file translations: 4年前
kpatui.rc Copy the KDE 3.5 branch to branches/trinity for new KDE 3.5 features. 15年前
main.cpp Rename common header files for consistency with class renaming 11年前
mod3.cpp Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines 3ヶ月前
mod3.h Replace Q_OBJECT with TQ_OBJECT 9ヶ月前
napoleon.cpp Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines 3ヶ月前
napoleon.h Replace Q_OBJECT with TQ_OBJECT 9ヶ月前
pile.cpp Rename old tq methods that no longer need a unique name 13年前
pile.h Replace Q_OBJECT with TQ_OBJECT 9ヶ月前
pile_algorithms.cpp Copy the KDE 3.5 branch to branches/trinity for new KDE 3.5 features. 15年前
pwidget.cpp Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines 3ヶ月前
pwidget.h Replace Q_OBJECT with TQ_OBJECT 9ヶ月前
simon.cpp Rename additional header files to avoid conflicts with KDE4 11年前
simon.h Replace Q_OBJECT with TQ_OBJECT 9ヶ月前
speeds.h Copy the KDE 3.5 branch to branches/trinity for new KDE 3.5 features. 15年前
spider.cpp Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines 3ヶ月前
spider.h Replace Q_OBJECT with TQ_OBJECT 9ヶ月前
version.h Copy the KDE 3.5 branch to branches/trinity for new KDE 3.5 features. 15年前
yukon.cpp Rename additional header files to avoid conflicts with KDE4 11年前
yukon.h Replace Q_OBJECT with TQ_OBJECT 9ヶ月前

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.