Perfect, that's what I needed! Thank you, problem solved!
Now I can choose the Box I like and change its borders!
I use Fluid just to draw the window and controls, know where to position it, and help show some commands, but I don't use Fluid to create the code!
thanks again!
Based on your idea, and as I needed the rounded corners, I did it like below! It can help other people!
void mycolor(int x, int y, int w, int h, Fl_Color) {
int r = 10;
fl_color(FL_WHITE);
fl_rectf(x, y, w, h);
fl_color(FL_GREEN);
fl_line_style(FL_SOLID, 1);
fl_arc(x, y, 2*r, 2*r, 90, 180);
fl_arc(x+w-2*r, y, 2*r, 2*r, 0, 90);
fl_arc(x, y+h-2*r, 2*r, 2*r, 180, 270);
fl_arc(x+w-2*r, y+h-2*r, 2*r, 2*r, 270, 360);
fl_line(x+r, y, x+w-r, y);
fl_line(x+r, y+h, x+w-r, y+h);
fl_line(x, y+r, x, y+h-r);
fl_line(x+w, y+r, x+w, y+h-r);
}