comparison mde/scheduler/Scheduler.d @ 101:71f0f1f83620

Some path adjustments for windows (untested) and fonts. All types of option can be edited. paths: support for getting the full path for a font when just the file name is entered, in order to unify usage on windows and linux. paths: Used getSpecialPath for some windows paths; needs testing. Content: Moved line-editing code to abstract ValueContent class and added some conversion functions, so that any type of ValueContent can be edited as text.
author Diggory Hardy <diggory.hardy@gmail.com>
date Sun, 16 Nov 2008 17:03:47 +0000
parents 2a364c7d82c9
children
comparison
equal deleted inserted replaced
100:0ea4a3e651ae 101:71f0f1f83620
23 public import tango.time.Time; 23 public import tango.time.Time;
24 24
25 debug { 25 debug {
26 import tango.util.log.Log : Log, Logger; 26 import tango.util.log.Log : Log, Logger;
27 private Logger logger; 27 private Logger logger;
28 } 28 static this() {
29 static this() { 29 logger = Log.getLogger ("mde.scheduler.Scheduler");
30 debug logger = Log.getLogger ("mde.scheduler.Scheduler"); 30 }
31 } 31 }
32 32
33 /// This class can run scheduled functions per frame, per time interval and per request. 33 /// This class can run scheduled functions per frame, per time interval and per request.
34 class Scheduler 34 class Scheduler
35 { 35 {