doxygen-1.8.3-multilib.patch 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. diff -up doxygen-1.8.3/src/htmlgen.cpp.multilib doxygen-1.8.3/src/htmlgen.cpp
  2. --- doxygen-1.8.3/src/htmlgen.cpp.multilib 2012-12-25 11:27:52.000000000 +0100
  3. +++ doxygen-1.8.3/src/htmlgen.cpp 2013-01-02 17:08:57.559028518 +0100
  4. @@ -125,6 +125,17 @@ static unsigned char tab_b_png[36] =
  5. 205, 207, 209, 211, 213, 217, 219, 206, 188
  6. };
  7. +static unsigned char nav_g_png[95] = {
  8. +0x89, 0x50, 0x4e, 0x47, 0x0d, 0x0a, 0x1a, 0x0a, 0x00, 0x00, 0x00, 0x0d,
  9. +0x49, 0x48, 0x44, 0x52, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x06,
  10. +0x08, 0x06, 0x00, 0x00, 0x00, 0x02, 0x10, 0xf4, 0x31, 0x00, 0x00, 0x00,
  11. +0x26, 0x49, 0x44, 0x41, 0x54, 0x78, 0x01, 0xed, 0xdd, 0x31, 0x0d, 0x00,
  12. +0x00, 0x08, 0x03, 0xc1, 0x4f, 0x48, 0x17, 0x66, 0x84, 0xe1, 0x5f, 0x0d,
  13. +0x2d, 0x3e, 0x7e, 0xb8, 0xe5, 0x4d, 0x20, 0x69, 0xcb, 0x4d, 0xe8, 0xc0,
  14. +0x83, 0x07, 0x07, 0x0f, 0x53, 0x00, 0xbd, 0xfc, 0x82, 0x3c, 0x05, 0x00,
  15. +0x00, 0x00, 0x00, 0x49, 0x45, 0x4e, 0x44, 0xae, 0x42, 0x60, 0x82,
  16. +};
  17. +
  18. // hovering tab background luma
  19. static unsigned char tab_h_png[36] =
  20. {
  21. @@ -824,6 +835,7 @@ static ColoredImgDataItem colored_tab_da
  22. { "tab_s.png", 1, 36, tab_s_png, 0 },
  23. { "nav_h.png", 1, 12, header_png, 0 },
  24. { "nav_f.png", 1, 56, func_header_png, 0 },
  25. + { "nav_g.png", 1, 6, nav_g_png, 0 },
  26. { "bc_s.png", 8, 30, bc_s_png, bc_s_a_png },
  27. { "doxygen.png", 104,31, doxygen_png, doxygen_a_png },
  28. { "closed.png", 9, 9, closed_png, closed_a_png },
  29. @@ -1502,13 +1514,6 @@ void HtmlGenerator::writeTabData()
  30. Doxygen::indexList->addStyleSheetFile("tabs.css");
  31. QCString dname=Config_getString("HTML_OUTPUT");
  32. writeColoredImgData(dname,colored_tab_data);
  33. -
  34. - {
  35. - unsigned char shadow[6] = { 5, 5, 5, 5, 5, 5 };
  36. - unsigned char shadow_alpha[6] = { 80, 60, 40, 20, 10, 0 };
  37. - ColoredImage img(1,6,shadow,shadow_alpha,0,0,100);
  38. - img.save(dname+"/nav_g.png");
  39. - }
  40. }
  41. void HtmlGenerator::writeSearchData(const char *dir)