Search

June 19, 2008
General »
...of a language, as measured by the width of abstraction levels a language can handle...
June 07, 2008
DWT »
...gc.fillGradientRectangle(
        event.x + event.width / 2, event.y, event.width / 2, event.height, false...
June 07, 2008
DWT »
...item not selected */
      int clientWidth = table.getClientArea().width;
      GC gc = event.gc;
      Color oldForeground = gc...
June 07, 2008
DWT »
...Listener {
    public void handleEvent(Event event) {
      event.width *= 2;
    }
  });

  shell.open();
  while (!shell.isDisposed()) {
    if...
June 05, 2008
Learn »
...WIDTH = 200;
    const int HEIGHT = WIDTH;
    const int NLOOP = 500;

    auto data = new float[][](WIDTH...
May 28, 2008
Learn »
...res[1] ;
    this.width = res[2] ;
    this.height = res[3] ;
    assert( width >= 0 && height >= 0...
May 16, 2008
DWT »
...x / event.width + 1;
into
  int lines = ( event.width > 0 ) ? ( size.x / event.width + 1...
May 16, 2008
Debuggers »
...traces ddbg spits out.  On a standard-width terminal the lines get wrapped around so...
May 16, 2008
DWT »
...of width.
		 *
		 * @param text
		 * @param width
		 */
		this(String text, int width) {
			line = text;
			columnWidth = width...
May 09, 2008
General »
...cast(Rectangle) s) {
    return r.length * r.width;
}
else if(auto c = cast(Circle) s...
135 136 137 138 139 140 141 142 143 144 145
Next ›   Last »