Thomas Charbonnel <thomas@undata.org>:

updated to version 1.4.
This commit is contained in:
Takashi Iwai 2003-11-03 19:10:38 +00:00
parent 6498fd396f
commit cd8875932e
39 changed files with 2859 additions and 579 deletions

View file

@ -25,8 +25,17 @@
HDSPMixerAbout::HDSPMixerAbout(int w, int h, char *label, HDSPMixerWindow *win):Fl_Double_Window(w, h, label)
{
basew = win;
text = new HDSPMixerAboutText(0,0,w,h);
text = new HDSPMixerAboutText(10,10,w-20,h-20);
end();
set_modal();
}
int HDSPMixerAbout::handle(int e) {
switch (e) {
case FL_PUSH:
hide();
return 1;
default:
return Fl_Window::handle(e);
}
}