*/}}

simplest.c 527 B

12345678910111213141516171819
  1. #include "la_5.h"
  2. void MyPanel(laUiList *uil, laPropPack *This, laPropPack *DetachedProps, laColumn *UNUSED, int context){
  3. laColumn* c=laFirstColumn(uil);
  4. laShowLabel(uil,c,"Hello world!",0,0);
  5. }
  6. int main(int argc, char *argv[]){
  7. laGetReady();
  8. laRegisterUiTemplate("my_panel","My Panel", MyPanel,0,0,"Demonstration", 0);
  9. laWindow* w = laDesignWindow(-1,-1,600,600);
  10. laLayout* l = laDesignLayout(w,"My Layout");
  11. laCreatePanel(l->FirstBlock,"my_panel");
  12. laStartWindow(w);
  13. laMainLoop();
  14. }