Changeset 43

Show
Ignore:
Timestamp:
05/06/05 01:12:02 (3 years ago)
Author:
jjr
Message:

Minor changes. Documentation update.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/dyndui/DynDUI.txt

    r40 r43  
    77Dynamic DUI is still a work in progress which means that there are a few "gotcha's" to be prepared for: 
    88 
    9 1) Make sure you install at least >= Gtk 2.4 on windows.  There are windows installers available as mentioned at dsource.org; see the DUI project discussions.  On Linux, Gtk 2.4 is also required, but this is usually less of a problem because of the prevalence of Gtk on Linux distributions. 
     91) Make sure you install at least Gtk 2.4 on windows; please don't use the new Gtk 2.6.7 for windows; it isn't compatible with this version of DUI yet (so far as I've tested).  There are windows installers available as mentioned at dsource.org; see the DUI project discussions.  On Linux, Gtk 2.4 is also required, but this is usually less of a problem because of the prevalence of Gtk on Linux distributions. 
    1010 
    11112) Currently, DynDUI assumes the default installation path of GTK on Windows to be 
  • trunk/src/gameIn4/src/Dine.d

    r8 r43  
    2626public class Dine : Button 
    2727{ 
    28      
    29      
    3028    int row; 
    3129    int col; 
  • trunk/src/gameIn4/src/Dines.d

    r8 r43  
    2020 
    2121private import dui.All; 
    22   
     22     
     23private import mPlayField; 
     24private import mDine; 
     25private import mTopScores; 
     26 
    2327public class Dines : MainWindow , MenuItemListener 
    24 
    25      
    26     private import mPlayField; 
    27     private import mDine; 
    28     private import mTopScores; 
    29      
     28{    
    3029    DinesMenu menu; 
    3130    GameStatus gameStatus; 
  • trunk/src/gameIn4/src/PlayField.d

    r8 r43  
    2323private import std.string; 
    2424private import std.random; 
     25     
     26private import mDines; 
     27private import mDine; 
    2528 
    2629public class PlayField : Table , MouseButtonListener 
    2730{ 
    28      
    29     private import mDines; 
    30     private import mDine; 
    31  
    3231    const int colSize = 30; 
    3332    const int rowSize = 16; 
  • trunk/src/gameIn4/src/TopScores.d

    r8 r43  
    2525private import std.path; 
    2626private import std.c.stdlib; 
     27     
     28private import dui.All; 
    2729 
    2830public: 
    2931class TopScores : ButtonClickedListener 
    3032{ 
    31      
    32      
    33      
    34     private import dui.All; 
    35      
    3633    private char[] homeDir; 
    3734    private char[] scoresFile;