/*****************************************************/ /* Graphics Console Set Routines */ /* Consider and test alterations carefully */ /* June, 1995 -- jr */ /* Last modification -- Oct 1997 mjs */ /*****************************************************/ #include extern tSIOUXSettings SIOUXSettings; void do_console(); void do_console() { // the next line must be set to 0 if // the file, 127Graphics.h is included otherwise // the next line must be set to 1 if // the file, 127Graphics.h is NOT included SIOUXSettings.initializeTB = 0; // the console window will automatically // grow or shrink to when you change the // fontsize to provide the indicated // number of columns SIOUXSettings.fontsize = 12; SIOUXSettings.fontid = kFontIDCourier; //was courier // change the next line to make the console // window wider or narrower SIOUXSettings.columns = 80; // change the next line to make the console // window longer or shorter SIOUXSettings.rows = 15; // the next line controls the vertical // location of the console window SIOUXSettings.toppixel= 40; // the next line controls the horizontal // location of the console window SIOUXSettings.leftpixel = 3; SIOUXSettings.asktosaveonclose = 0; SIOUXSettings.setupmenus = 1; }