zynaddsubfx

ZynAddSubFX open source synthesizer
Log | Files | Refs | Submodules | LICENSE

BankUI.fl (4074B)


      1 # data file for the Fltk User Interface Designer (fluid)
      2 version 1.0302 
      3 header_name {.h} 
      4 code_name {.cc}
      5 decl {//Copyright (c) 2002-2005 Nasca Octavian Paul} {private local
      6 } 
      7 
      8 decl {//License: GNU GPL version 2 or later} {private local
      9 } 
     10 
     11 decl {\#include <cstdlib>} {public local
     12 } 
     13 
     14 decl {\#include <cstdio>} {public local
     15 } 
     16 
     17 decl {\#include <cstring>} {public local
     18 } 
     19 
     20 decl {\#include <FL/Fl_Button.H>} {public local
     21 } 
     22 
     23 decl {\#include <FL/Fl_File_Chooser.H>} {public local
     24 } 
     25 
     26 decl {\#include <FL/Fl_Input.H>} {public local
     27 }
     28 
     29 decl {\#include "Fl_Osc_Interface.h"} {public local
     30 } 
     31 
     32 decl {\#include "Fl_Osc_Check.H"} {public local
     33 } 
     34 
     35 decl {\#include "Fl_Osc_Pane.H"} {public local
     36 }
     37 
     38 decl {\#include "../Misc/Util.h"} {public local
     39 } 
     40 
     41 decl {\#include "BankView.h"} {public local
     42 } 
     43 
     44 class BankUI {open
     45 } {
     46   Function {make_window()} {open
     47   } {
     48     Fl_Window bankuiwindow {
     49       label Bank open
     50       xywh {492 406 785 575} type Double
     51       class Fl_Osc_Window
     52     } {
     53       Fl_Box {} {
     54         xywh {0 0 0 0}
     55         code0 {bankuiwindow->init(osc, "/");}
     56       }
     57       Fl_Button {} {
     58         label Close
     59         callback {bankuiwindow->hide();}
     60         xywh {705 546 70 24} box THIN_UP_BOX
     61       }
     62       Fl_Group bankview {open
     63         xywh {5 34 772 491} box ENGRAVED_FRAME
     64         class BankView
     65       } {}
     66       Fl_Group modeselect {open
     67         xywh {5 528 425 42} box ENGRAVED_BOX
     68         class BankViewControls
     69         code0 {o->box(FL_UP_BOX);}
     70       } {}
     71       Fl_Button {} {
     72         label {New Bank...}
     73         callback {const char *dirname;
     74 
     75 dirname=fl_input("New empty Bank:");
     76 if (dirname==NULL) return;
     77 
     78 osc->write("/bank/newbank", "s", dirname);
     79 refreshmainwindow();}
     80         xywh {685 5 93 25} labelfont 1 labelsize 11 align 128
     81       }
     82       Fl_Check_Button {} {
     83         label {auto close}
     84         tooltip {automatically close the bank window if the instrument is loaded} xywh {705 529 60 15} down_box DOWN_BOX labelsize 10
     85         code0 {o->init("config/cfg.BankUIAutoClose");}
     86         class Fl_Osc_Check
     87       }
     88       Fl_Choice banklist {
     89         callback {refreshmainwindow();}
     90         xywh {5 8 220 20} down_box BORDER_BOX labelfont 1 align 0 textfont 1 textsize 11
     91         code0 {bankview->init(osc, modeselect, npart);}
     92         code1 {o->init("bank/bank_select");}
     93         class BankList
     94       } {}
     95       Fl_Button {} {
     96         label {Refresh bank list}
     97         callback {rescan_for_banks();
     98 banklist->value(0);}
     99         tooltip {Refresh the bank list (rescan)} xywh {230 8 105 20} box THIN_UP_BOX color 50 labelsize 11
    100       }
    101       Fl_Input {} {
    102         label {Search by name: }
    103         code0 {o->when(FL_WHEN_CHANGED);}
    104         callback {
    105            std::string str = o->value();
    106            update_search(str)}
    107         tooltip {Enter text to search for}
    108         xywh {460 8 105 20} box THIN_UP_BOX color 50 labelsize 11
    109       }
    110     }
    111   }
    112   Function {BankUI(int *npart_, Fl_Osc_Interface *osc_)} {open
    113   } {
    114     code {npart=npart_;
    115 osc  =osc_;
    116 make_window();
    117 } {}
    118   }
    119   Function {~BankUI()} {open return_type virtual
    120   } {
    121     code {bankuiwindow->hide();
    122 delete bankuiwindow;} {}
    123   }
    124   Function {show()} {open
    125   } {
    126     code {bankuiwindow->show();} {}
    127   }
    128   Function {hide()} {open
    129   } {
    130     code {bankuiwindow->hide();} {}
    131   }
    132   Function {init(Fl_Valuator *cbwig_)} {open
    133   } {
    134     code {cbwig=cbwig_;
    135     bankview->cbwig(cbwig);
    136 rescan_for_banks();} {}
    137   }
    138   Function {process()} {open return_type void
    139   } {
    140     code {} {}
    141   }
    142   Function {refreshmainwindow()} {open
    143   } {
    144     code {
    145 bankview->refresh();} {}
    146   }
    147   Function {rescan_for_banks()} {open
    148   } {
    149     code {banklist->clear();
    150     osc->write("/bank/rescan");
    151 if (banklist->size() == 0)
    152      banklist->add(" ");} {}
    153   }
    154   Function {update_search(std::string search_string)} {open
    155   } {
    156     code {if (search_string.empty()) {
    157     refreshmainwindow();
    158 } else {
    159     osc->write("/bank/search", "s", search_string.c_str());
    160 }
    161     } {}
    162   }
    163   decl {Fl_Osc_Interface *osc;} {private local
    164   }
    165   decl {Fl_Valuator *cbwig;} {public local
    166   }
    167   decl {int *npart;} {private local
    168   }
    169 }