home *** CD-ROM | disk | FTP | other *** search
- #ifndef cwsrightbut
- #define cwsrightbut
-
- procedure RButton is
- begin
- Clear 'Right Mouse Button';
- Write('If you click here with the right button, the card will automatically ');
- Write('go to the most appropriate place, looking for a spot in The Foundation first ');
- Write('and then to the Tableau.\n');
- Write('If the card can\'t be played nothing will happen.\n');
- Wait 'About...' About;
- end;
-
- stack procedure PollLeftTo(gr : group) is
- begin
- if Cursor!=0 then break;
- with it do
- if it<>self then
- begin
- it.SelectLeftTo(it!+1);
- if Cursor!=0 then break procedure;
- end
- for gr;
- end;
-
- stack procedure PollLeftToNE(gr : group) is
- begin
- if Cursor!=0 then break;
- with it do
- if it<>self then
- if it!>0 then
- begin
- it.SelectLeftTo(it!+1);
- if Cursor!=0 then break procedure;
- end
- for gr;
- end;
-
- #endif