Skip to content

Commit

Permalink
Simplify meson file & maybe fix for system fltk?
Browse files Browse the repository at this point in the history
  • Loading branch information
karurochari committed Dec 15, 2024
1 parent 1647173 commit 4a583ad
Show file tree
Hide file tree
Showing 4 changed files with 24 additions and 25 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,8 @@ jobs:
freeglut \
libpng \
meson \
ninja
ninja \
fltk
brew install --cask xquartz
cd /opt/homebrew/opt/llvm/bin
#ln -s clang++ clang++-19
Expand Down
18 changes: 8 additions & 10 deletions meson.build
Original file line number Diff line number Diff line change
Expand Up @@ -61,11 +61,13 @@ if need_pugixml or get_option('use_system_pugixml') == false
endif

if get_option('use_system_fltk')
libfltk_dep = dependency('fltk', version: '>=1.4', required: false)
libfltk_images_dep = dependency('fltk-images', version: '>=1.4', required: false)
libfltk_forms_dep = dependency('fltk-forms', version: '>=1.4', required: false)
if libfltk_dep.found() == false or libfltk_images_dep.found() == false or libfltk_forms_dep.found() == false
need_fltk = true
libfltk_dep = dependency('FLTK', version: '>=1.4.0', modules: ['fltk::fltk', 'fltk::images', 'fltk::forms'], required: false)
if libfltk_dep.found() == false
#For MacOS14 assuming a brew dependency because there is something broken in there.
libfltk_dep = dependency('fltk', required: false)
if libfltk_dep.found() == false
need_fltk = true
endif
endif
endif
if need_fltk == true or get_option('use_system_fltk') == false
Expand All @@ -86,9 +88,7 @@ if need_fltk == true or get_option('use_system_fltk') == false
endif

libfltk_proj = cmake.subproject('libfltk', options: opt_fltk)
libfltk_dep = libfltk_proj.dependency(['fltk-shared'])
libfltk_images_dep = libfltk_proj.dependency(['fltk-images-shared'])
libfltk_forms_dep = libfltk_proj.dependency(['fltk-forms-shared'])
libfltk_dep = [ libfltk_proj.dependency(['fltk-shared']), libfltk_proj.dependency(['fltk-images-shared']), libfltk_proj.dependency(['fltk-forms-shared'])]
#libfltk_gl_dep = libfltk_proj.dependency(['fltk-gl'])
endif

Expand Down Expand Up @@ -199,8 +199,6 @@ include_dirs = include_directories(['./include'])

vs_fltk_deps += [
libfltk_dep,
libfltk_images_dep,
libfltk_forms_dep,

pugixml_dep,
json_dep,
Expand Down
2 changes: 1 addition & 1 deletion scripts/build-default.sh
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ else
if [ "$(uname)" != "Darwin" ]; then
bun run meson-setup.clang-release
else
meson setup -Dforce_x11_backend=true --reconfigure build --buildtype=release --native-file toolchains/flatpak.ini
meson setup -Dforce_x11_backend=false --reconfigure build --buildtype=release --native-file toolchains/flatpak.ini
# Unclear fix to be investigated
rm subprojects/libtcc/VERSION
fi
Expand Down
26 changes: 13 additions & 13 deletions src/themes/default-cute.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
#include "FL/Fl.H"
#include "FL/Fl_SVG_Image.H"
#include "FL/fl_draw.H"
#include "nanosvg/nanosvg.h"
//#include "nanosvg/nanosvg.h"
#include <cstdint>
#include <format>
#include <string>
Expand All @@ -11,28 +11,28 @@ namespace vs{

namespace theme_cute{
void up_box(int x, int y, int w, int h, Fl_Color c){
std::string s = std::format("<svg viewBox='0 0 {} {}'>\
/* std::string s = std::format("<svg viewBox='0 0 {} {}'>\
<rect x='1%' y='1%' stroke-width='2' rx='10%' width='96%' height='96%' stroke='rgb({}, {}, {})' fill='none' />\
</svg>",w, h, c&(0xff<<24),c&(0xff<<16),c&(0xff<<8));
Fl_SVG_Image img (">",s.c_str());
img.draw(x,y,w,h);
img.draw(x,y,w,h);*/
//fl_draw_box(Fl_Boxtype::FL_FLAT_BOX, x, y, w, h, c);
/* let col1 = c.to_rgb();
let col = Color::color_average(c, Color::Background, 0.8).to_rgb();
draw::draw_rbox(x, y, w, h, 5, true, Color::from_rgb(col.0, col.1, col.2));*/
// let col1 = c.to_rgb();
//let col = Color::color_average(c, Color::Background, 0.8).to_rgb();
//draw::draw_rbox(x, y, w, h, 5, true, Color::from_rgb(col.0, col.1, col.2));
}

void diamondup_box(int x, int y, int w, int h, Fl_Color c){
std::string s = std::format("<svg viewBox='0 0 {} {}'>\
/* std::string s = std::format("<svg viewBox='0 0 {} {}'>\
<rect x='1%' y='1%' stroke-width='2' rx='10%' width='96%' height='96%' stroke='rgb({}, {}, {})' fill='none' />\
</svg>",w, h, c&(0xff<<24),c&(0xff<<16),c&(0xff<<8));
Fl_SVG_Image img (">>",s.c_str());
img.draw(x,y,w,h);
/* let col1 = c.to_rgb();
let col = Color::color_average(c, Color::Background, 0.8).to_rgb();
draw::draw_rbox(x, y, w, h, 5, true, Color::from_rgb(col.0, col.1, col.2));*/
img.draw(x,y,w,h);*/
// let col1 = c.to_rgb();
//let col = Color::color_average(c, Color::Background, 0.8).to_rgb();
//draw::draw_rbox(x, y, w, h, 5, true, Color::from_rgb(col.0, col.1, col.2));
//fl_draw_box(Fl_Boxtype::FL_FLAT_BOX, x, y, w, h, c);

}
Expand Down Expand Up @@ -97,15 +97,15 @@ constexpr uint8_t colors[][3] = {
}*/
void apply(){
//for(int i =0;i<sizeof(colors)/3;i++)Fl::set_color(i,colors[i][0],colors[i][1],colors[i][2]);
/**/
/*
Fl::set_boxtype(FL_UP_BOX, up_box, 2, 2, 4, 4);
Fl::set_boxtype(FL_DIAMOND_UP_BOX, diamondup_box, 2, 2, 4, 4);
Fl::set_boxtype(FL_DOWN_BOX, up_box, 2, 2, 4, 4);
Fl::set_boxtype(FL_DIAMOND_DOWN_BOX, diamondup_box, 2, 2, 4, 4);
Fl::set_boxtype(FL_ROUND_DOWN_BOX, diamondup_box, 2, 2, 4, 4);
Fl::set_boxtype(FL_BORDER_BOX, diamondup_box, 2, 2, 4, 4);
Fl::set_boxtype(FL_BORDER_BOX, diamondup_box, 2, 2, 4, 4);*/
}

}
Expand Down

0 comments on commit 4a583ad

Please sign in to comment.