Advertisement
Guest User

Untitled

a guest
Dec 6th, 2018
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.76 KB | None | 0 0
  1. class pna_dialog {
  2. idd = 1;
  3. name = "pna_dialog";
  4. movingEnable = 0;
  5. enableSimulation = 1;
  6.  
  7. class controlsBackground {
  8. class TitleBackground: RscText {
  9. colorBackground[] = {"(profilenamespace getvariable ['GUI_BCG_RGB_R',0.3843])", "(profilenamespace getvariable ['GUI_BCG_RGB_G',0.7019])", "(profilenamespace getvariable ['GUI_BCG_RGB_B',0.8862])", "(profilenamespace getvariable ['GUI_BCG_RGB_A',0.7])"};
  10. idc = -1;
  11. x = 0.3;
  12. y = 0.2;
  13. w = 0.47;
  14. h = (1 / 25);
  15. };
  16.  
  17. class MainBackground: RscText {
  18. colorBackground[] = {0, 0, 0, 0.7};
  19. idc = -1;
  20. x = 0.3;
  21. y = 0.2 + (11 / 250);
  22. w = 0.47;
  23. h = 0.3 - (22 / 250);
  24. };
  25. };
  26.  
  27. class controls {
  28. class Title: RscTitle {
  29. colorBackground[] = {0, 0, 0, 0};
  30. idc = 2651;
  31. text = "";
  32. x = 0.3;
  33. y = 0.2;
  34. w = 0.6;
  35. h = (1 / 25);
  36. };
  37.  
  38. class UrlEdit: RscEdit {
  39. idc = 1400;
  40. text = "URL image";
  41. sizeEx = 0.030;
  42. x = 0.40;
  43. y = 0.30;
  44. w = 0.25;
  45. h = 0.03;
  46. };
  47.  
  48. class buttonvalidate: RscButtonMenu {
  49. idc = -1;
  50. text = "Valider";
  51. colorBackground[] = {"(profilenamespace getvariable ['GUI_BCG_RGB_R',0.3843])", "(profilenamespace getvariable ['GUI_BCG_RGB_G',0.7019])", "(profilenamespace getvariable ['GUI_BCG_RGB_B',0.8862])", 0.5};
  52. onButtonClick = "";
  53. x = 0.45;
  54. y = 0.35;
  55. w = (6.25 / 40);
  56. h = (1 / 25);
  57. };
  58. };
  59. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement