search for: pohlmann

Displaying 4 results from an estimated 4 matches for "pohlmann".

Did you mean: mohlmann
2001 May 09
4
Can compressed music sound better than uncompressed?
I quote from "Principles of Digital Audio" by Ken C. Pohlmann: "Because perceptual coders tailor the coded signal to the ear's acuity, they similarly tailor the required response of the playback system itself. Live music does not pass through amplifiers and loudspeakers, it goes directly to the ear. But recorded music must pass through the playba...
2005 Apr 12
2
FXSettings problem
Hi all. I tried to subclass FXSettings in order to add some functionality to it but I ran into the following problem. The code which shall be executed looks like this: def test reg = Registry.new("test.reg") reg.Parse end The Registry class basically looks this way: require "fox12" include Fox class Registry < FXSettings
2005 May 16
1
TEXTFIELD_ENTER_ONLY doesn''t work
Hi Lyle, I noticed that when creating a FXTextField with TEXTFIELD_ENTER_ONLY it still sends messages to its target when other keys than KEY_Return are pressed. I usually create a textfield this way: textfield = FXTextField.new(self, 50, self, ID_INPUT, TEXTFIELD_ENTER_ONLY) textfield.setText(aStr) textfield.setFocus textfield.move(x, y, w, h) textfield.show This way only the enter key should
2005 Apr 05
0
Connecting messages to methods
Hi all. I''m trying to write a subclass of FXMainWindow which has several methods to dispatch events. The class looks like this: -- require "fox12" require "fox12/responder" include Fox class Window < FXMainWindow include Responder ID_SELF, ID_BTN = enum(FXMainWindow::ID_LAST, 2) def initialize(a, title) super(a, title, nil, nil, DECOR_ALL, 0, 0, 640,