Fix some header comment block widths

This commit is contained in:
Gregory Nutt 2016-11-11 08:51:41 -06:00
parent b808ac2b2d
commit 0e0e70775d

View File

@ -1,4 +1,4 @@
/****************************************************************************
/*******************************************************************************
* apps/graphics/traveler/tools/tcledit/tcl_paint.c
*
* Copyright (C) 2016 Gregory Nutt. All rights reserved.
@ -33,7 +33,7 @@
*
****************************************************************************/
/****************************************************************************
/*******************************************************************************
* Included files
****************************************************************************/
@ -55,17 +55,17 @@
#include "wld_utils.h"
#include "tcl_x11graphics.h"
/****************************************************************************
/*******************************************************************************
* Pre-processor Definitions
****************************************************************************/
#define LINE_THICKNESS_DELTA 1
/****************************************************************************
/*******************************************************************************
* Private Functions
****************************************************************************/
/****************************************************************************
/*******************************************************************************
* Function: tcl_color_index
* Description:
***************************************************************************/
@ -90,10 +90,10 @@ static int tcl_color_index(tcl_window_t *w)
return ndx;
}
/*************************************************************************
/****************************************************************************
* Function: tcl_paint_rectangle
* Description:
************************************************************************/
***************************************************************************/
static void tcl_paint_rectangle(tcl_window_t *w, int hleft, int hright,
int vtop, int vbottom, dev_pixel_t pixel)
@ -122,10 +122,10 @@ static void tcl_paint_rectangle(tcl_window_t *w, int hleft, int hright,
}
}
/*************************************************************************
/****************************************************************************
* Function: tcl_paint_coplanar_rectangle
* Description:
************************************************************************/
***************************************************************************/
static void tcl_paint_coplanar_rectangle(tcl_window_t *w,
rect_data_t *ptr, int hoffset,
@ -226,10 +226,10 @@ static void tcl_paint_coplanar_rectangle(tcl_window_t *w,
tcl_paint_rectangle(w, hleft, hright, vtop, vbottom, pixel);
}
/*************************************************************************
/****************************************************************************
* Function: tcl_paint_horizontal_rectangle
* Description:
************************************************************************/
***************************************************************************/
static int tcl_check_horizontal_rectangle(tcl_window_t *w, rect_data_t *ptr, int pos)
{
@ -260,10 +260,10 @@ static int tcl_check_horizontal_rectangle(tcl_window_t *w, rect_data_t *ptr, int
return ((posstart <= pos) && (posend >= pos));
}
/*************************************************************************
/****************************************************************************
* Function: tcl_paint_horizontal_rectangle
* Description:
************************************************************************/
***************************************************************************/
static void tcl_paint_horizontal_rectangle(tcl_window_t *w, rect_data_t *ptr,
int hoffset, int voffset,
@ -374,10 +374,10 @@ static void tcl_paint_horizontal_rectangle(tcl_window_t *w, rect_data_t *ptr,
tcl_paint_rectangle(w, hleft, hright, vtop, vbottom, pixel);
}
/*************************************************************************
/****************************************************************************
* Function: tcl_check_vertical_rectangle
* Description:
************************************************************************/
***************************************************************************/
static int tcl_check_vertical_rectangle(tcl_window_t *w, rect_data_t *ptr, int pos)
{
@ -408,10 +408,10 @@ static int tcl_check_vertical_rectangle(tcl_window_t *w, rect_data_t *ptr, int p
return ((posstart <= pos) && (posend >= pos));
}
/*************************************************************************
/****************************************************************************
* Function: tcl_paint_vertical_rectangle
* Description:
************************************************************************/
***************************************************************************/
static void tcl_paint_vertical_rectangle(tcl_window_t *w, rect_data_t *ptr,
int hoffset, int voffset, dev_pixel_t pixel)
@ -526,14 +526,14 @@ static void tcl_paint_vertical_rectangle(tcl_window_t *w, rect_data_t *ptr,
tcl_paint_rectangle(w, hleft, hright, vtop, vbottom, pixel);
}
/****************************************************************************
/*******************************************************************************
* Public Functions
****************************************************************************/
/*************************************************************************
/****************************************************************************
* Function: tcl_paint_background
* Description:
************************************************************************/
***************************************************************************/
void tcl_paint_background(tcl_window_t *w)
{
@ -556,10 +556,10 @@ void tcl_paint_background(tcl_window_t *w)
}
}
/*************************************************************************
/****************************************************************************
* Function: tcl_paint_position
* Description:
************************************************************************/
***************************************************************************/
void tcl_paint_position(tcl_window_t *w)
{
@ -633,10 +633,10 @@ void tcl_paint_position(tcl_window_t *w)
}
}
/*************************************************************************
/****************************************************************************
* Function: tcl_paint_grid
* Description:
************************************************************************/
***************************************************************************/
void tcl_paint_grid(tcl_window_t *w)
{
@ -726,10 +726,10 @@ void tcl_paint_grid(tcl_window_t *w)
while (hpos < w->width);
}
/*************************************************************************
/****************************************************************************
* Function: tcl_paint_rectangles
* Description:
************************************************************************/
***************************************************************************/
void tcl_paint_rectangles(tcl_window_t *w)
{